answersLogoWhite

0


Best Answer

ISMAP

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which one of the following IMG attributes is only required for server-side image maps?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How do you specify size of an image in HTML?

the <IMG> tag has two attributes, height and width that take numeric values as input which specifies the pixel height and width of the image. You can use these attributes to specify the size of the image.


Which attributes are used to resize an image?

The attributes used to adjust the size at which an image is displayed on the page are the WIDTH and HEIGHT attributes.The values for these attributes are in pixels or percentages. When percentages are used, they refer to the size of the containing element. So if we had a DIV whose width was 500 pixels, and we set an image up like so:The image would wind up being 100px wide in the browser (500 * .2 = 100) When we leave one of the attributes out, but adjust the other, the browsers will maintain the aspect ratio of the original dimensions. This keeps us from "stretching" the image in one way or the other.It should be noted here that if you decide that an image doesn't need to be the size of the image file for your page, you're going to want to open that file in a graphics editor and adjust it's actual dimensions. This method tells the browser how large an image will be before the image downloads, so the space can be set aside for it (it stops pages from "jumping.") It doesn't have an effect on the actual size of the image. If you can use a smaller image, you'll get a smaller file size, use less bandwidth, and make the site faster for your users.


What are the attributes of image tag?

The body tag in HTML 5 does not support any element-specific attributes. It does however support the global attributes, and the event attributes. Please see the related links for a complete reference.


How do you write in the right side of the image in HTML?

Add float:left; to the style element of the image. All following text will flow around the image on the right side.


How do you upload an image to a HTML document?

To put an image in an HTML document, first upload the image to a web server somewhere. Then, copy the URL of the document. Finally, place the following code into the HTML document: <image src="PASTE URL HERE" />

Related questions

How do you specify size of an image in HTML?

the <IMG> tag has two attributes, height and width that take numeric values as input which specifies the pixel height and width of the image. You can use these attributes to specify the size of the image.


image enhancer?

An image enhancer is a program or tool that can improve the quality of an image by increasing its contrast, sharpness, and other attributes.


How do you get emage HTML?

the tag is used to insert images. It is an empty element that only has attributes. Two attributes are required for the element: the src attribute and the alt attribute. The src attribute specifies the path of the image file. The alt attribute specifies an alternative text for the image, if the image is unavailable. The syntax for the tag is as follows: To know more check out the cronj IT site.


What are the two attributes that you should use with every img tag?

The img tag has two attributes: src and alt. If you leave either one of these attributes out of the code, you will not see the image.


What is an image enhancer?

An image enhancer is a program or tool that can improve the quality of an image by increasing its contrast, sharpness, and other attributes. It can also be used to remove noise, artifacts, and other unwanted elements from an image.


Height and width of a bitmap image?

A bitmap image doesn't necessarily have a specified height and width. It can be changed by pressing (Ctrl+E), or the long way; Image > Attributes


What is formatting PowerPoint?

Formatting is changing the attributes of elements. The elements might include an image, audio or video.


Which of the following is probably not a graphic image?

Calculation


Which attributes are used to resize an image?

The attributes used to adjust the size at which an image is displayed on the page are the WIDTH and HEIGHT attributes.The values for these attributes are in pixels or percentages. When percentages are used, they refer to the size of the containing element. So if we had a DIV whose width was 500 pixels, and we set an image up like so:The image would wind up being 100px wide in the browser (500 * .2 = 100) When we leave one of the attributes out, but adjust the other, the browsers will maintain the aspect ratio of the original dimensions. This keeps us from "stretching" the image in one way or the other.It should be noted here that if you decide that an image doesn't need to be the size of the image file for your page, you're going to want to open that file in a graphics editor and adjust it's actual dimensions. This method tells the browser how large an image will be before the image downloads, so the space can be set aside for it (it stops pages from "jumping.") It doesn't have an effect on the actual size of the image. If you can use a smaller image, you'll get a smaller file size, use less bandwidth, and make the site faster for your users.


How do you create an image map in Adobe Illustrator?

Select the object you want mapped. Then in the attributes window select rectangle (or polygon) from the image map menu. Below that enter the destination url.


What are the attributes of image tag?

The body tag in HTML 5 does not support any element-specific attributes. It does however support the global attributes, and the event attributes. Please see the related links for a complete reference.


What is the name of the additional information placed inside a tag that controls how the tag is used?

The information contained within the opening portion of an HTML tag that controls various attributes of the tag is called the tags "attributes."Attributes follow the format attribute="value" and are added to the tag after it's opening. For instance:In this case, the image tag has two attributes, the src attribute and the alt attribute. The values of those attributes are "a.png" and "A" respectively.