suleimanz avatar

Creating a Simple table with HTML only

suleimanz

Published: 02 May 2020 › Updated: 02 May 2020Creating a Simple table with HTML only

Creating a Simple table with HTML only

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

Leave Creating a Simple table with HTML only to:

Written by

Read more #hive-103590 posts


Best Posts From suleimanz

We have not curated any of suleimanz's posts yet. But you can encourage our curation team to review posts by visiting them regularly and by referring other readers. Because we give priority to frequently read content.

More Posts From suleimanz