HTML Links Examples




HTML Links Example

<!DOCTYPE html>
<html>
   <head>
      <title>Anchor Tag Example</title>
   </head>
   <body>
   <h3>Anchor Tag</h3>
   <a href="http://tutorialsroot.com/" target="_self">Tutorialroot</a>
   </body>
</html>

Output

How to HTML Link Example

<!DOCTYPE html>
<html>

   <head>
      <title>Image Hyperlink</title>
   </head>
	
   <body>
      <p>Click Following Image Hyperlink</p>
      <a href = "http://www.tutorialsroot.com" target = "_self"> 
         <img src = "tutorialsroot.png" alt = "Image Hyperlink" border = "0"/> 
      </a>
   </body>
	
</html>

Output