In programming, whatever you opened in a code, you have to close it. So if you are asking about tables, the codes for the tables and whatever that is in the table should be opened and closed in a proper format.
<table> is the opening code for a typical table. To close a table, you need to end it with </table>. You add a "/" within the code tag.
<tr> means a table row. You will need to declare this 10 times to create 10 rows. Remember to close every row before creating a new row. Here's how you close a row, with </tr>
<td> means table data. This is where you put whatever HTML information, including text and pictures, into the table. This also means columns. In your case you don't need multiple columns, hence one <td> per row is enough for you. Creating multiple <td> will also means creating multiple columns. Remember to close your table data before moving the the next column or row, with </td>
So eventually, your code will be:
CODE
<table>
<tr>
<td>
Whatever you want to put in this Table Data (Row 1)
</td>
</tr>
<tr>
<td>
Whatever you want to put in this Table Data (Row 2)
</td>
</tr>
<tr>
<td>
Whatever you want to put in this Table Data (Row 3)
</td>
</tr>
</table>
You can also take reference from the website that gaea has provided. However I'd recommend this page from W3Schools, which provides a detailed information with examples to aid you.
http://www.w3schools.com/html/html_tables.asp
Reply