Doctype HTML
Doctype HTML
DOCTYPE html>
<html>
<head>
<style>
table {
th, td {
color: #333;
th {
background-color: navy;
color: white;
tr:nth-child(even) {
background-color: lightgray;
</style>
</head>
<body>
<table>
<caption>Simple Table</caption>
<tr>
<th>Item</th>
<th>Price</th>
<th>Quantity</th>
</tr>
<tr>
<td>Apple</td>
<td>$1</td>
<td>10</td>
</tr>
<tr>
<td>Banana</td>
<td>$0.5</td>
<td>20</td>
</tr>
<tr>
<td>Orange</td>
<td>$0.75</td>
<td>15</td>
</tr>
</table>
</body>
</html>