Tables
Tables are a useful tool in HTML. Tables can be used to organize information or format web pages(This isn't recommended though). In this tutorial, I will be showing how to set up a table and some basic table formatting. Here's an example of a basic table:
<table>
<tr>
<td>Text goes here</td>
<td>More text here</td>
</tr>
</table>
Here's a breakdown:
<tr>
<td>Text goes here</td>
<td>More text here</td>
</tr>
</table>
- <tr> begins a new row
- </tr> ends the row
- <td> begins a new cell
- </td> closes the cell
