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<html>
2 <head>
3 </head>
4 <body>
5 <img src="exampel.end">
6 </img>
7 </body>
8
9
10 </html>
1// Show image in html bois
2
3<!DOCTYPE html>
4<html>
5 <head>
6 </head>
7 <body>
8 <div class="img">
9 <img class="img" src="image.png">
10 </div>
11 </body>
12</html>