Example of linking images - HTML CSS HTML

HTML CSS examples for HTML:Image

Description

Example of linking images

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>Example of linking images</title> 
 </head> <!--from   ww  w  . j  a v a2 s.  com-->
 <body> 
  <p><a href="http://java2s.com/resources/d.png"><img src="http://java2s.com/resources/d.png" alt="an image"></a></p>   
 </body>
</html>

Related Tutorials