Computer Science, asked by ishika3398, 2 months ago

Sunil wants to insert an image 'elearning.jpg' into a webpage. write the name and the syntax of the HTML tag she should use. the alternate text for the image should be E-learning image​

Answers

Answered by amisha2501
13

Answer:

the syntax will be:

<img src="elearning.jpg" alt="E-learning">

hope it helps

Answered by THEmultipleTHANKER
6

Answer:

Sunil wants to insert an image 'e-learning.jpg' into a web page. The alternate text for the image should be 'E-learning Image'. To do the given task, write the HTML cσde given below.

\dag\:\boxed{\tt &lt; img\: src="e-learning.jpg"\: alt="E-learning\:Image"/ &gt; }

Explanation:

To insert image into a web page, the <img/> tag is used.

The src attribute of <img> tag specifies the source of the image. Here, source attribute contains the URL of the image.

The alt attribute specifies the alternate text for the image. It appears on the web page if the image is not displayed due to some issues.

Similar questions