How to add table and image to a webpage by HTML
Answers
Answered by
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
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
History,
6 months ago
Social Sciences,
6 months ago
English,
6 months ago
Math,
1 year ago
Math,
1 year ago