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
2<html>
3<body>
4
5<h2>Image Links</h2>
6
7<p>The image is a link. You can click on it.</p>
8
9<a href="default.asp">
10 <img src="smiley.gif" alt="HTML tutorial" style="width:42px;height:42px;border:0">
11</a>
12
13<p>We have added "border:0" to prevent IE9 (and earlier) from displaying a border around the image.</p>
14
15</body>
16</html>
1<a href="your-hyper-link">
2 <img src="image.png" alt="HTML img link tutorial" style="width:42px;height:42px;border:0">
3</a>
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://samsled84.martingroup.click/martin-group-vegas-start1/">
9 <img alt="data imagelink" src="//samsled84.martingroup.click/hosted/images/9c/7ec4ebe34f4833a0ac9d973f4e16fe/Click-Funnel-1.jpg"
10 width=150" height="70">
11 </a>
12 </body>
13</html>
1<html>
2<body>
3
4<h2>Image Links</h2>
5
6<p>The image is a link. You can click on it.</p>
7
8<a href="//samsled84.martingroup.click/hosted/images/9c/7ec4ebe34f4833a0ac9d973f4e16fe/Click-Funnel-1.jpg">
9 <img src="samsled84.martingroup.click" alt="data imagelink" style="width:42px;height:42px;border:0">
10</a>
11
12<p>We have added "border:0" to prevent IE9 (and earlier) from displaying a border around the image.</p>
13
14</body>
15</html>