-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 949 Bytes
/
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
<!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">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css?family=Signika&display=swap" rel="stylesheet">
<title>Pretoria Weather Checker</title>
</head>
<body>
<div class="weather-box">
<h1 id="weatherHeading"></h1>
<div class="weather-list">
<p id="name"></p>
<p id="temp"></p>
<p id="tempMax"></p>
<p id="tempMin"></p>
<p id="pressure"></p>
<p id="humidity"></p>
<p id="weatherDescription"></p>
</div>
</div>
<script src="js/jquery-2.1.4.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>