31 lines
891 B
HTML
31 lines
891 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Cocorahs Weather Data - 11/29/2025</title>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; margin: 20px; }
|
|
table { border-collapse: collapse; width: 100%; }
|
|
th, td { border: 1px solid #ddd; padding: 8px; text-align: left; }
|
|
th { background-color: #f2f2f2; font-weight: bold; }
|
|
tr:nth-child(even) { background-color: #f9f9f9; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Cocorahs Weather Data - 11/29/2025</h1>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Date/Time of Ob (Z)</th>
|
|
<th>Station Number</th>
|
|
<th>Station Name</th>
|
|
<th>New Precip</th>
|
|
<th>New Snow</th>
|
|
<th>Snow Depth</th>
|
|
<th>Comments</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html> |