Example of HTML Links - HTML CSS HTML

HTML CSS examples for HTML:Anchor Link

Description

Example of HTML Links

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <meta charset="UTF-8"> 
  <title>Example of HTML Links</title> 
 </head> <!--from   w w  w  .  j  av a 2s .  c  om-->
 <body> 
  <p><a href="http://www.java2s.com/">book2s</a></p> 
  <p><a href="../images.jpg"><img src="../images/thumb.jpg" alt="message"></a></p> 
  <p><a href="http://www.google.com/" target="_blank">Google Search</a></p>   
 </body>
</html>

Related Tutorials