+ 2
Attaching links to Images
Please can anyone help me out on how to attach links to other webpages on an image such that clicking on that image will lead you to another website.... I'm thinking of this code though, but I haven't tried it out yet <a href="www.sololearn.com"><IMG SRC="image.jpg">
2 ответов
+ 6
For making an image a link, follow this syntax:
<a href="url">
<img src="url">
</a>
In places of 'url' in the <a> and the <img>, write the url of your link and image
+ 2
@chirag bhansali Thanks A lot