To create table in html there are following tags being used:
Table Tag : For creating a table in html document we can use this tag. It is a pair html tag means once open you need to close it. Otherwise it will make trouble the document . The table tag is as following:
<table>……….</table>
Row Tag : This tag is used to enter the number of rows in the table. The row tag is as following:
<tr>………………….</tr>
Cell Tag : It is useful in for entering data to the cells. The cell tag is as following:
<td>…………………</td>