Computer Science, asked by piyu25, 1 year ago

write code to produce following html table:

Attachments:

Answers

Answered by gunjan03
34
above is the code for making the table using html
Attachments:
Answered by lovingheart
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