1The <img> tag will help you add image in html coding... it contains attributes:
2
31) src - usage <img src="">, it states the source of the image..
42) alt - usage <img src="" alt=""> it is the alternative text if you image failed to load...
5
6Thank you and HAPPY CODING.
7Feel free to give a upvote.. ^^
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>
1<!DOCTYPE html>
2<html>
3 <head>
4 <title>How To Put Images Into HTML</title>
5 <meta charset="UTF-8">
6 </head>
7 <body>
8 <img src="YourImageName.YourImageFileType">
9 </body>
10</html>