-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 1001 Bytes
/
Copy pathindex.html
File metadata and controls
33 lines (32 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<title>Florida Weather Status</title>
<meta charset="utf-8">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body>
<div class="container mt-3" style="width: 450px;">
<h2 class="text-center">Current Weather</h2>
<table class="table table-bordered">
<thead>
<tr>
<th>Date & Time</th>
<th>City</th>
<th>Tempurature(F)</th>
<th>Condition</th>
</tr>
</thead>
<tbody>
<tr>
<td id="local"></td>
<td id="name"></td>
<td id="temp_f"></td>
<td id="text"></td>
</tr>
</tbody>
</table>
</div>
</body>
<script src="script.js"></script>
</html>