Embedding an image in a hyperlink

The img element can be used to create an image-based hyperlink in conjunction with the a element.

 
<!DOCTYPE HTML> 
<html> 
    <head> 
        <title>Example</title> 
    </head> 
<body> 
    <p> 
        <a href="http://java2s.com"> 
            <img src="http://www.java2s.com/style/download.png" ismap alt="Image" width="50" height="50"/> 
        </a> 
    </p> 
</body> 
</html>
  
Click to view this demo.
Home 
  HTML CSS Book 
    HTML  

img:
  1. <img> for Embedding an Image
  2. Embedding an image in a hyperlink
Related: