<!DOCTYPE html>
<html>
<head><title>Anchor Tag Example</title></head>
<body>
<!-- New window -->
<a href="https://lictbhuna.in" target="_blank">Open LICT Bhuna</a><br><br>
<!-- Same window -->
<a href="https://google.com" target="_self">Open Google</a><br><br>
<!-- Same page reference -->
<a href="#about">Go to About Section</a><br><br>
<h2 id="about">About LICT</h2>
<!-- Image hyperlink -->
<a href="logo.png">
<img src="logo.png" width="200">
</a>
</body>
</html>