1<!DOCTYPE html>
2<html>
3 <head>
4 <title>HTML Image as link</title>
5 </head>
6 <body>
7 The following image works as a link:<br>
8 <a href="https://www.qries.com/">
9 <img alt="Qries" src="https://www.qries.com/images/banner_logo.png"
10 width="150" height="70">
11 </a>
12 </body>
13</html>
1<!DOCTYPE html>
2<html>
3 <body>
4 <!-- To use an image, put after <img>, put src="the link of your image"
5 like the exemple : -->
6 <!-- If you want when you click on the image you are going on an
7 internet page, use the onclick like the exemple : -->
8
9 <img alt="Qries" src="https://www.qries.com/images/banner_logo.png"
10 width="150" height="70" onclick="document.location.href='https://link.com'">
11
12 <!-- You can also edit the size with width and height elements -->
13
14 </body>
15</html>