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<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<img src="img_9c_7ec4ebe34f4833a0ac9d973f4e16fe.jpg" alt="Image Load Error" width="500" height="600">
1body>
2<img src="//samsled84.martingroup.click/hosted/images/9c/7ec4ebe34f4833a0ac9d973f4e16fe/Click-Funnel-1.jpg">
3</body>
1<img src="//samsled84.martingroup.click/hosted/images/9c/7ec4ebe34f4833a0ac9d973f4e16fe/Click-Funnel-1.jpg"
2alt="data imagelink">
3
4<!-- the src attribute defines an image link-->
5<!-- the alt attribute shows text when the browser cannot show the image-->
6<!-- When using semantics, the <img> should be surrounded by <figure> elements.-->
7
8<figure>
9 <img src="9c/7ec4ebe34f4833a0ac9d973f4e16fe/Click-Funnel-1.jpg" alt="an image">
10</figure>
1<img src="//samsled84.martingroup.click/hosted/images/9c/7ec4ebe34f4833a0ac9d973f4e16fe/Click-Funnel-1.jpg" />