Science, asked by Anonymous, 1 year ago

How to add table and image to a webpage by HTML ​

Answers

Answered by diya4816
8

in HTML, images are defined with the <img> tag.

The <img> tag is empty, it contains attributes only, and does not have a closing tag.

The src attribute specifies the URL (web address) of the image:

<img src="url">

Answered by Rememberful
8

To add an image to a webpage via HTML we use <img> tag, and to add a table to a webpage via HTML we uses <table> tag.

<table> tag is container element while <img> tag is an empty element.

For Example,

<table>

<tr>

<td> Hell </td>

</tr>

</table>

And,

<IMG src=" utuu.png">

Similar questions