Learn HTML - Multimedia Tags
<Image> tag
The <img> tag defines an image in an HTML page.
The <img> tag has two required attributes: src and alt.
Note: 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.
Attributes
Attributes | Usage |
width | Specify width of the image |
height | Specify height of the image |
src | Source URL |
alt | Specifies an alternate text for an image |
Example
<html>
<head>
</head>
<body>
<img src="imageurl" height=200 width=200/>
</body>
</html>
<Video> tag
TBD
<Audio> tag
TBD