This readme is all about the basics of the table tool which is present in the markup language HTML.
The table tool is used to demark an table in your website.
<table width="400" border="1"> <!-- visual properties -->
<thead>
<tr>
<th>Item 1</th> <!-- head of the table -->
<th>Item 2</th> <!-- head of the table -->
</tr>
</thead>
<tbody>
<tr>
<td>...</td>
<td>...</td>
</tr>
<tr>
<td>...</td>
<td>...</td>
</tr>
<tr>
<td>...</td>
<td>...</td>
</tr>
</tbody>
Item 1 | Item 2 |
---|---|
... | ... |
... | ... |
... | ... |