Tables in HTML
Tables in HTML
CLASS 8
HANDOUTS
TABLES IN HTML
Tables allow you to arrange data into rows and columns on a web page, making it easy to
display information like schedules, statistics, or other structured data in a clear format.
<HTML>
<HEAD><TITLE>TABLES</TITLE></HEAD>
</tr> <tr>
<th>Student Name</th>
<th>Subject</th>
<th>Marks</th>
<td>Math</td>
<td>85</td>
</tr> <tr>
<td>Science</td>
</tr> <tr>
<td>Emma</td>
</tr> </table></body></html>