write code to produce following html table:
Attachments:
Answers
Answered by
34
above is the code for making the table using html
Attachments:
Answered by
19
Code to produce following html table:
<HTML>
<HEAD>
<TITLE> TABLE </TITLE>
</HEAD>
<BODY>
<TABLE border = “1”>
<TR>
<TD> A</TD>
<TD>
<TR> <TD> B</TD></TR>
<TR><TD>C</TD></TR>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>
Explanation:
After analyzing the expected output, there are only one row and two columns. The first column has no partition and ‘A’ is expected to be printed. The second column contains two rows and the first row needs to print ‘B’ and second row should print C. This is achieved by using the above code. <TR> stands for Table row, <TD> stands for Table data.
Similar questions