Which of the following attributes can be used to define the location of an image?

XHTML Images

This section covers adding images to your page and several methods for controlling the flow of text around images.

Inserting images

Images are inserted using the img element. The most common formats for images are GIF, JPEG, and PNG. The src attribute specifies the image's location on either the local file system or the Web, and the alt attribute specifies a text string that should be displayed if the browser cannot load the image.

Programming the ENIAC

Which of the following attributes can be used to define the location of an image?

This monster occupied an entire room, but was programmable.

Here are some ideas to consider when using images.

  • To make the image appear on its own line, use a p or br element before the img element.
  • For large images, make a smaller version (i.e., a thumbnail) to decrease the time needed to load the image.
  • The alt attribute is required by HTML and XHTML. The value for alt is also commonly displayed as a tooltip when the user hovers the mouse over the image for a few seconds. A similar attribute, title, also exists that most browsers use to generate a tooltip.
  • To prevent the display of a tooltip (e.g., images used for bullet points in an unordered list), use title="" and alt="".

Specifying image size

The width and height attributes control an image's dimensions. When these attributes are specified, the browser can construct the page more quickly because it can render the page and download the image in parallel. Otherwise, the browser must first download the image to determine its dimensions and then render the remainder of the page.

Programming the ENIAC

Which of the following attributes can be used to define the location of an image?
width="400" height="310" />

This monster occupied an entire room, but was programmable.

The width and height attributes can also be used to scale an image. For example, if the image is 400×310 pixels and you want to display it half-sized, specify width="200" and height="155".

A few things to note about specifying an image's width and height:

  • Percentages can be used; however, the values are relative to the browser window, not the image itself.
  • It's not necessary to supply both size attributes – if you adjust one, the browser will automatically adjust the other. For example, to display the above image half-sized, the following would suffice:

Which of the following attributes can be used to define the location of an image?
width="200" />

  • Scaling the image by adjusting the width or height does not change the image size. In other words, the browser still has to download the full image, even if that image is being displayed with smaller dimensions. If you want the page to load quickly, a better solution is to make a separate, smaller image to use as a thumbnail. If the user wants to see the entire image, the user can then click on the thumbnail image. As an example, the following markup code links a thumbnail image, eniac_thumb.jpg, to the full-sized image, eniac.jpg.

Which of the following attributes can be used to define the location of an image?

Images and page layout

Floating images

The align attribute can make an image float along one side of the page, with text and other elements wrapping around the other side. NOTE: This attribute is deprecated because style sheets are more commonly used to control image layout. The markup and sample output below demonstrate left floating.

Which of the following attributes can be used to define the location of an image?
align="left" />

Programming the ENIAC

ENIAC, short for Electronic Numerical Integrator and Computer, ...

...

Which of the following attributes can be used to define the location of an image?

Alternatively, specifying align="right" yields the following sample output:

Which of the following attributes can be used to define the location of an image?

Different images can have different float types. The key is to place each img element directly before the text that it should disrupt. The markup and sample output below demonstrate left and right floating.

Which of the following attributes can be used to define the location of an image?
align="right" />

Programming the ENIAC

ENIAC, short for Electronic Numerical Integrator and Computer, ...

Which of the following attributes can be used to define the location of an image?
align="left" />

The contract was signed on...

Which of the following attributes can be used to define the location of an image?

Stopping elements from wrapping

A floated image affects all the elements that follow it, unless a br element with the clear attribute is used. To force the text to follow the image use
. If you have several consecutive images, some of which are left-aligned and some of which are right-aligned, you may want text to follow the left-aligned images but flow around the right-aligned images. In this case you would use
. Alternatively, if text should flow around the left-aligned images and follow right-aligned images you would use
. Any text after the img element but prior to these br elements will still flow around the image.

As an example, here's the original markup without line breaks and the corresponding sample output:

Which of the following attributes can be used to define the location of an image?

Programming the ENIAC

ENIAC, short for Electronic Numerical Integrator And Computer...

Which of the following attributes can be used to define the location of an image?

The contract was signed on...

Which of the following attributes can be used to define the location of an image?

The bottom-left image fills in some of the whitespace under the first paragraph. In particular, part of the bottom left picture and the first two lines of the second paragraph flow around the right picture. To prevent this, you can put a line break after the first paragraph indicating that succeeding text and/or images should follow the right picture. The red line in the resulting output below shows how the bottom of the first image is flush with the top of the second image.

Which of the following attributes can be used to define the location of an image?

Programming the ENIAC

ENIAC, short for Electronic Numerical Integrator And Computer...


Which of the following attributes can be used to define the location of an image?

The contract was signed on...

Which of the following attributes can be used to define the location of an image?

To have the second image, which is aligned on the left margin, display before the next paragraph, you can place a line break after that image.

Which of the following attributes can be used to define the location of an image?

Programming the ENIAC

ENIAC, short for Electronic Numerical Integrator And Computer...

Which of the following attributes can be used to define the location of an image?


The contract was signed on...

Which of the following attributes can be used to define the location of an image?

Adding space around images

You can add spacing between images and text by using the img element's vspace and hspace attributes. The values of these attributes are the number of pixels to use as spacing. NOTE: These attributes are also deprecated in favor of style sheets, which allow greater control over the spacing around images.

A few things to note about vertical and horizontal spacing:

  • It is not necessary to specify both the hspace and vspace attributes.
  • The disadvantage of using these deprecated attributes is that the same amount of space is added to the top/bottom (vspace) or left/right margins (hspace) of the image. Style sheets allow you to control the spacing assigned to each margin.

The following example puts 40 pixels of vertical space and 20 pixels horizontal space around the first image, and then puts 30 pixels of horizontal space around the second image. NOTE: The blue boxes indicate the spacing.

Which of the following attributes can be used to define the location of an image?
vspace="40" hspace="20" />

Programming the ENIAC

ENIAC, short for Electronic Numerical Integrator And Computer...

Which of the following attributes can be used to define the location of an image?
hspace="30" />

The contract was signed on...

Which of the following attributes can be used to define the location of an image?

Aligning images with text

To align inline images with text, use the align attribute of the img element. There are six alignment types:

  1. absbottom: Align the bottom of this image with the bottom of the largest text item on this line.
  2. absmiddle: Align the middle of this image with the middle of the largest text item on this line.
  3. bottom: Align the bottom of this image with the baseline of the text.
  4. middle: Align the middle of this image with the baseline of the text.
  5. texttop: Align this image with the tallest text in the line. May behave exactly like top in some browsers.
  6. top: Align this image with the theoretical tallest text element in the line.

The markup and sample output below demonstrate the use of each of the image alignment types.

Which of the following attributes can be used to define the location of an image?
default

Which of the following attributes can be used to define the location of an image?
absbottom

Which of the following attributes can be used to define the location of an image?
default

Which of the following attributes can be used to define the location of an image?
absmiddle

Which of the following attributes can be used to define the location of an image?
default

Which of the following attributes can be used to define the location of an image?
bottom

Which of the following attributes can be used to define the location of an image?
default

Which of the following attributes can be used to define the location of an image?
middle

Which of the following attributes can be used to define the location of an image?
default

Which of the following attributes can be used to define the location of an image?
texttop

Which of the following attributes can be used to define the location of an image?
default

Which of the following attributes can be used to define the location of an image?
top

Which of the following attributes can be used to define the location of an image?

Which attribute is used to specify the location of an image?

The src attribute is required, and contains the path to the image you want to embed.

Which of the attributes are given to any image to locate the file?

b src attribute is used to specify the location of an image file.

Which of the following HTML tags can be used to insert an image to a web page?

In order to put a simple image on a web page, we use the element. This is a void element (meaning, it cannot have any child content and cannot have an end tag) that requires two attributes to be useful: src and alt . The src attribute contains a URL pointing to the image you want to embed in the page.

What are the main attributes of image?

etc. src: source location of image width: width of an image height: height of an image alt: this attribute is important when image is not loaded it shows short text description of an image and also allows screen readers to read aloud. 1. src: consist of image's location.