Working with Images in HTML
To add an image to your HTML page, you can use the <img> tag.
The <img> tag is a self-closing tag, which means you don't need to add a closing tag.
The src attribute specifies the URL of the image file you want to display.
<img src="image.png" />
Yo...
ritechoice23.hashnode.dev1 min read