0
How insert image on web page
how does it work
3 Answers
0
By using <img> tag
Example
<Html>
<Body>
<img src="url of your image "/>
</Body>
</Html>
You can set height , width and alternative text too.
like
<img src="url of your image " height="100px" weight="120px" alt="here you can put alternative text which appear when you put wrong url or when the image is not available or when the name of image is wrong mean it only appear when the image is not able to display (hope you get it) :)"/>