Write a HTML program to create a table with 5 rows and 6 columns
Answers
Answered by
4
Answer:
please follow me and mark me as brainliest.
Explanation:
The following table is an example of a basic table with three rows and two columns of data.
Data 1 Data 2
Data 3 Data 4
Data 5 Data 6
The codes that generated this table look like this:
<TABLE>
<TR>
<TD>Data 1</TD>
<TD>Data 2</TD>
</TR>
<TR>
<TD>Data 3</TD>
<TD>Data 4</TD>
</TR>
<TR>
<TD>Data 5</TD>
<TD>Data 6</TD>
</TR>
</TABLE>
Similar questions