Create an Image Link with anchor element and image element in HTML and CSS

Description

The following code shows how to create an Image Link with anchor element and image element.

Example


<!--from   w  ww  .ja v a  2s  .c  o m-->

<!DOCTYPE HTML>
<html>
<body>
<a href="http://java2s.com">
<img src="http://www.java2s.com/style/download.png"
alt="domain"
width="32"
height="32" />
</a>
</body>
</html>

Click to view the demo

The code above generates the following result.

Create an Image Link with anchor element and image element in HTML and CSS