What is the img element?
Hello,
What is the img element?
How does it work?
Where does it use?
Please tell me about details. Is img element important to web page?
Hello,
What is the img element?
How does it work?
Where does it use?
Please tell me about details. Is img element important to web page?
Hello,
Img element is very Important to add an image in the web page.
For adding image that tag is <img>.
Example: <img src=”images/photo.png”>.
To add width and height values.
<img src=”images/photo.png” width=”52” height=”25”>.
To add alternative text?
<img src=”images/photo.png” width=”52” height=”25” alt=”This is a photo of”>.
You can add image by following above code.
Thanks.
The img element is a html tag that is used to place images on a web page. Below is the simplest way it can be used:
<img src="images/pic1.png"/>
The above is an img tag specifying the source of the image file to be displayed. There are many more attributes such as width, height, name, id etc which can be specified within the tag.
The img tag is of course very important, since images play a very vital role in designing of a webpage.