Create a Table with Table Headings in html5 code
<html>
<head>
<title>Table Headings</title>
</head>
<body>
<table border="4">
<tr>
<th></th>
<th scope="col">Saturday</th>
<th scope="col">Sunday</th>
</tr>
<tr>
<th scope="row">Tickets sold:</th>
<td>120</td>
<td>135</td>
</tr>
<tr>
<th scope="row">Total sales:</th>
<td>$600</td>
<td>$675</td>
</tr>
</table>
</body>
</html>
0 comments:
Post a Comment