Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.
Three tags you shoul know that creats table in HML
<table></table>
This is the main tag for the table
<tr></tr>
Creats rows, as you see (TR) stands for Table Row
<td></td>
Creats the cells in which we fill them with Data, as you see (TD) stand for Table Data
<table>
<tr>
<td> DATA </td>
</tr>
</table>
This will create one table and one cell in it the word DATA
You should try w3school website to learn html. Here is table creation tutorial in html: http://w3schools.com/html/html_tables.asp