Computer Applications
Write HTML code to produce following table :

HTML Advanced Features
10 Likes
Answer
<HTML>
<BODY>
<TABLE frame = "lhs" rules = "all">
<TR> <TD> A </TD> <TD> C </TD><TD> E </TD> </TR>
<TR> <TD> B </TD> <TD> D </TD> <TD> F </TD></TR>
</TABLE>
</BODY>
</HTML>
Answered By
8 Likes
Related Questions
Write code to produce following HTML table :

Write HTML code to produce following table :

Write HTML code to produce following table :

Create a table having three header rows with yellow background colour, five table-body rows having pink colour and two footer rows having cyan colour. Assume table contents on your own.