Image liée HTML
<a href="https://example.url.com">
<img src="image.png" alt="An image">
</a>
Foolish Frog
<a href="https://example.url.com">
<img src="image.png" alt="An image">
</a>
<a href="http://www.google.com">
<img src="D:/MOHIT/HTML/images.jpg" />
</a>
<!DOCTYPE html>
<html>
<head>
<title>HTML Image as link</title>
</head>
<body>
The following image works as a link:<br>
<a href="https://www.qries.com/">
<img alt="Qries" src="https://www.qries.com/images/banner_logo.png"
width=150" height="70">
</a>
</body>
</html>
<a href="https://www.google.com">
<img src="./images/image.jpg" />
</a>
<a href="https://www.google.com"><img alt="Google" src="img.jpg"
style="max-width:960px"/></a>
<!DOCTYPE html>
<html>
<body>
<span>Open image link in a new tab:
<a href="http://www.google.com" target="_blank">
<img src="D:/USER/HTML/image.jpg" />
</a>
</span>
</body>
</html>