-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (48 loc) · 1.43 KB
/
index.html
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests" />
<title>Document</title>
<script type="text/javascript" src="./js/main.js" defer></script>
<link rel="stylesheet" href="./css/main.css">
</head>
<body onload="loadSite()">
<div class="container">
<h1 id="temperature"></h1>
<p id="description"></p>
<h2 id="location"></h2>
<!-- tables -->
<div class="table-container">
<table class="table">
<thead>
<tr>
<th>City</th>
<th>Temperature</th>
<th>Humidity</th>
<th>Pressure</th>
<th>Wind Speed</th>
<th>Wind Direction</th>
<th>Sunrise</th>
<th>Sunset</th>
</tr>
</thead>
<tbody id="table-body">
<tr>
<td id="data_city">London</td>
<td id="data_temperature">20</td>
<td id="data_humidity">20</td>
<td id="data_pressure">20</td>
<td id="data_wind_speed">20</td>
<td id="data_wind_direction">20</td>
<td id="data_sunrise">20</td>
<td id="data_sunset">20</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>