Creating a Simple table with HTML only

in GitPlait5 years ago

Creating a Table in HTML is pretty simple first, let me introduce you to the tags

Table tag: <Table></Table> 
Table row: <tr></tr>
Table cell: <td></td>

Secondly, you begin with a table tag then create the cell and rows you require.
An example of this is shown below

<TABLE>
   <TR>
      <TD>Data </TD>
      <TD>Data </TD>
   </TR>
   <TR>
      <TD>Data </TD>
      <TD>Data </TD>
   </TR>
   <TR>
      <TD>Data </TD>
      <TD>Data </TD>
   </TR>
</TABLE>

Remember to always close and open your tags properly to get your desirable results