answersLogoWhite

0

Why you use img in HTML?

Updated: 11/19/2022
User Avatar

Wiki User

11y ago

Best Answer

Because pictures allow us to convey information in a much more straightforward way than words. Much of the modern look and feel of the web still wouldn't be possible without the use of images.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why you use img in HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do webpages use graphics?

You should use HTML tag "img" for that. look at the related link


How do you create img tag in HTML and graphics and attributes?

The HTML <img /> tag displays graphics on the page. Here is an example of an img tag: <img src="image.jpg" width="100" height="100" border="0" align="center" alt="My Image"/>.


What is invalid for img tag n HTML?

center


How do you use border in HTML?

Border can be an attribute in html. For example, in the table tag. This will put a border around the table.As another example, it can be used in the img tag.


Is true In HTML the general syntax for inline image is srcimage?

We use the img tag with the src attribute, like this:


Why use HTML tags?

Tags are the basic rules in HTML like if you wanted to add a dotted list you can use the ul tag and you can add images with the img tag and you can make the image a link by nesting the img inside a link tag but i believe the most useful tag is the div tag


How do you post a picture on a forum with HTML?

Most forums use something that is called BBcode, which is an alias of HTML. On most forums the code would be [img]http://deffe.com/cow.jpg[/img] some forums use HTML link to upload the image , on those forums paste the HTML link generated from a image hosting website. make sure that there are no space's present in between the tags or links


How do you get a picture code for HTML?

img scr="YOUR PICTURE LOCATION.gif">


What is coding for inserting Image in HTMl language?

In HTML: <img src="path/to/image.jpg" alt="Desc. of the Image"> In XHTML: <img src="path/to/image.jpg" alt="Desc. of the Image" />


Where should you get the HTML code for image?

You can use this code: <img src="/images/imgname.jpg" width="500" height="500">


How do you add image to my HTML?

simply use the <img> tag... include the src attribute and link it to the images URL like so: <img src="http://www.whateverTheUrlIs.com"> you should also include the <alt> attribute to make your code perfect: <img src="........" alt=".....">


How do you insert image from your desktop in a HTML?

In HTML, to include an image, use the IMG tag and specify the location of the image using the SRC parameter. However, because the image is located on your desktop, you will be the only person who will see it. If you want to make it viewable by others, you have to upload the HTML file and the image file to a webserver. <IMG SRC="location of picture">