KnowledgeBoat Logo

Computer Applications

Observe the following table and write the HTML code to generate it :

Write code to produce this HTML table. HTML Images, Links & Tables, Computer Applications Code 165 Sumita Arora Solutions CBSE Class 10.

HTML Advanced Features

CBSE

20 Likes

Answer

<HTML>
<BODY>
<TABLE BORDER="1">
<TR> <TH COLSPAN = "4" ALIGN = "CENTER">Marks</TH> </TR>
<TR> 
<TD ALIGN = "CENTER"> English </TD> 
<TD ALIGN = "CENTER"> Maths </TD> 
<TD ALIGN = "CENTER"> Economics </TD> 
<TD ALIGN = "CENTER"> Physics </TD>
</TR>
<TR> 
<TD ALIGN = "CENTER"> 67 </TD> 
<TD ALIGN = "CENTER"> 89 </TD> 
<TD ALIGN = "CENTER"> 77 </TD> 
<TD ALIGN = "CENTER"> 92 </TD>
</TR>
</TABLE>
</BODY>
</HTML>

Answered By

12 Likes


Related Questions