Social Sciences, asked by Anonymous, 2 months ago

how are images added in an HTML document​

Answers

Answered by sagacioux
16

The <img> tag is used to insert images in the HTML documents. It is an empty element and contains attributes only. The syntax of the <img> tag can be given with:

<img src="url" alt="some_text">

The following example inserts three images on the web page:

Example

Try this còde »

<img src="kites.jpg" alt="Flying Kites"> <img src="sky.jpg" alt="Cloudy Sky"> <img src="balloons.jpg" alt="Balloons">

Each image must carry at least two attributes: the src attribute, and an alt attribute.

The src attribute tells the browser where to find the image. Its value is the URL of the image file.

Whereas, the alt attribute provides an alternative text for the image, if it is unavailable or cannot be displayed for some reason. Its value should be a meaningful substitute for the image.

Answered by Sly01
10
  • To insert image in an HTML page, use the <img> tags. It is an empty tag, containing only attributes since the closing tag is not required. Just keep in mind that you should use the <img> tag inside <body>… </body> tag.
  • In HTML, the images are inserted using the <IMG> tag. It is an empty tag. Table 4.2 lists the attributes of the <IMG> tag

Similar questions