HTML

HTML Projects

HTML Project

Image Links In HTML
Previous Home Next
adplus-dvertising

In HTML Image Links to create a hyperlink with a image in our webpages, so we have to be used a HTML Image Links by the help of image. HTML Image Links we needed a image inside hyperlink which place to use.

Syntax used

<a href="http://www.r4r.co.in" target="_self"> 
   <img border="0" src="file:///C:/xampp/htdocs/images/logo.gif" 
width="72" height="72"></p>
 </a>

Example

 <!DOCTYPE html>
<html>
<head>
<title>Image Hyperlink Example</title>
</head>
<body>
<p>Click following link</p>
<a href="http://www.r4r.co.in" target="_self"> 
   <img border="0" src="file:///C:/xampp/htdocs/images/logo.gif" 
width="72" height="72"></p>
 </a>
</body>
</html>

Output :

And now , we have to click on image then we go to home page of our needed website.

Supporting Browsers
Previous Home Next