How to use image tag in html? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

How to use image tag in html?

5th May 2020, 4:41 AM
Ch Haseeb
Ch Haseeb - avatar
7 Answers
+ 6
Use w3schools.com and search
6th May 2020, 8:14 PM
Pavithra Kanmanirajah
Pavithra Kanmanirajah - avatar
+ 2
Using the <img> tag The <img> element is the most straight-forward way of displaying a static image on a page. You should normally use it whenever an image is actually a part of the content (as opposed to using an image as part of a page's design). All <img> tags must have a defined src attribute. This defines the image to be displayed. Typically, the src is a URL, but a data representation of the image can also be used in some cases. Inline vs. Block Intuitively, an image seems like a block element. It has a defined width and height, and cannot be broken over multiple lines. It behaves like a block. Unfortunately, because of historical reasons, the HTML specification (and all browsers, by default) treat the <img> tag as if it is an inline element. Because of the way browsers handle white space, this can cause problems if you are not careful. <img src="/wp-content/uploads/flamingo.jpg"> This combination of text and image looks bad on most browsers. Read more: https://html.com/tags/img/#ixzz6LXqVAA4B
5th May 2020, 6:06 AM
SITHU Nyein
SITHU Nyein - avatar
0
Did you Google? 🤔
5th May 2020, 4:46 AM
Bhavya
Bhavya - avatar
0
Just type <img src="your link" >
5th May 2020, 4:47 AM
ycsvenom
ycsvenom - avatar
5th May 2020, 5:40 AM
A C K
A C K - avatar
0
<img src = "source link of the image" alt = "text to be displayed, in place of pic if there no proper internet " width = "required size in px" height = "required value in px"
5th May 2020, 5:41 AM
Ramayanam Hemanth Krishna Vineel
Ramayanam Hemanth Krishna Vineel - avatar
0
<img src ="URL or location from PC" alt ="Image description If the browser cannot display the image for various reasons" then image's attributes/>
7th May 2020, 9:04 PM
Mohammed Abu Shqear
Mohammed Abu Shqear - avatar