HTML Favicon
HTML Favicon
<table>
<tr>
<th>Student Name</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td>Ahad</td>
<td>Sohail</td>
<td>Tanzil</td>
</tr>
<tr>
<td>DIT 2nd Semester</td>
<td>DIT 2nd Semester</td>
<td>DIT 2nd Semester</td>
</tr>
</table>
Each table cell is defined by <td>
<td> stands for table data
A table cell can contain all sorts of HTML elements: text, images, lists,
links, other tables, etc
Table Rows
Each table row starts with <tr> and ends with </tr>
<tr> stands for table row
<table>
<tr>
<td>Sohail</td>
<td>Ahad</td>
<td>Tanzil</td>
</tr>
<tr>
<td>DIT 2nd Semester</td>
<td>DIT 2nd Semester</td>
<td>DIT 2nd Semester</td>
</tr>
</table>
Table Headers
Everything between <th> and </th> is table header
<th> stands for table header
<tr>
<th>Student Name</th>
<th>Contact NO</th>
<th>Class</th>
</tr>