0
How can I apply img tag
2 Antworten
0
https://www.sololearn.com/learn/HTML/1030/
This might help.
0
Smth. like this:
<img src="snowfall.png" alt="Snowfall" height="100" width="100">
The <img> tag defines an image in an HTML page.
The <img> tag has two required attributes: src and alt.
Images are not technically inserted into an HTML page, images are linked to HTML pages. The <img> tag creates a holding space for the referenced image.
To link an image to another document, simply nest the <img> tag inside <a> tags.