1<img src="https://learn.coderslang.com/js-test-8.png" alt="JavaScript test"/>
1<!--When the image is in the same folder as your html file-->
2<img src="example.jpg">
3<!--When the image is in a image folder-->
4<img src="./image/example.jpg">
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>