Physics, asked by suryaghosh123456789, 5 months ago

Write a HTML program to create a table with 5 rows and 6 columns​

Answers

Answered by nileshkumarnirala25
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