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 :)