Computer Applications
How will you add an image of a table at the top of your web page?
HTML Advanced Features
1 Like
Answer
We can use the <IMG>
tag with its attribute 'src' to add an image of a table at the top of our web page. The HTML code is as follows:
<HTML>
<HEAD>
</HEAD>
<BODY>
<IMG SRC = "TABLE.JPG" ALT = "IMAGE OF A TABLE">
...contents of the web page...
</BODY>
</HTML>
Answered By
1 Like