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<img src="[image link here]" alt="[alt text here]">
2
3<!-- the src attribute defines an image link-->
4<!-- the alt attribute shows text when the browser cannot show the image-->
5<!-- When using semantics, the <img> should be surrounded by <figure> elements.-->
6
7<figure>
8 <img src="link.jpg" alt="an image">
9</figure>