Ok now in order to make a table using the tags above you must know how to place the tags below is the code to make a simple table and then the table it makes:
<table>
<tr> <td>cell 1</td>
<td>cell 2</td>
</tr>
<tr>
<td>cell 3</td>
<td>cell 4</td>
</tr>
</table>
| cell 1 |
cell 2 |
| cell 3 |
cell 4 |
Now I will show how to add a border and a background color.
To add a border simply change the <table> to <table border="2"> and below is the result on the table:
| cell 1 |
cell 2 |
| cell 3 |
cell 4 |
And to change the background color simply change the <table> to <table bgcolor="#4dcb01"> and the result would be:
| cell 1 |
cell 2 |
| cell 3 |
cell 4 |
You can change both the border and background color in one go by adding both the attributes to the <table> tag and the result would be:
| cell 1 |
cell 2 |
| cell 3 |
cell 4 |
|