CBSE Class 10 Computer Applications Question 33 of 81

Images, Links and Tables — Question 5

Back to all questions
5
Question

Question 5

How will you add an image of a table at the top of your web page?

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>