How to Create an HTML Table

Tables are comprised of information that is contained inside sections and lines, and HTML supplies a few distinct components for characterizing and organizing these things. At any rate a table must comprise of <table>, <tr> (table line), and <td> (table information) components. For more noteworthy structure and extra semantic esteem, tables may incorporate the <th> (table header) ele-ment and a couple of different components too. At the point when these components are cooperating, they deliver a strong table.

 HTML TABLE SAMPLE CODING EXAMPLE

<table>
  <tr>
    <th>NAME1</th>
    <th>NAME2</th>
    <th>NAME3</th>
    <th>NAME4</th>
  </tr>
 
  <tr>
    <td>ITEM1</td>
    <td>ITEM2</td>
    <td>ITEM3</td>
    <td>ITEM4</td>
  </tr>
  <tr>
    <td>ITEM5</td>
    <td>ITEM6</td>
    <td>ITEM7</td>
    <td>ITEM8</td>
  </tr>
</table>

How to Create an HTML Table VIDEO tUTORIAL

Post a Comment

0 Comments