1<p><img src="image/example.jpg" alt="Example1" width="193" height="130"> (width:193px, height:130px)</p>
2
3<p><img src="image/example.jpg" alt="Example2" width="96" height="65"> (width:96px, height:65px)</p>
4
5<p><img src="image/example.jpg" alt="Example3" width="100%" height="130"> (width:100%, height:130px)</p>
6
1<!DOCTYPE html>
2<html>
3 <body>
4
5 <!-- Pour utiliser une image à partir d'un lien, cous pouvez utiliser
6 Cette commande : <img src="votre lien"> voici un exemple -->
7
8 <img src="https://www.qries.com/images/banner_logo.png"
9 width="150" height="70">
10
11 </body>
12</html>
1<img src="flowers.jpg" alt="flowers">
2
3//Always add the image type (jpg,png, etc) Adding alt text
4is also good coding practice :)
1<!DOCTYPE html>
2<html>
3 <head>
4 <title>HTML img Tag</title>
5 </head>
6
7 <body>
8 <img src="/html/images/test.png" alt="Simply Easy Learning" width="200"
9 height="80">
10 </body>
11</html>
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <title>My test page</title>
6 </head>
7 <body>
8 <img src="" alt="My test image">
9 </body>
10</html>