-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·43 lines (36 loc) · 1.29 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Daily Weather Check</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<div id="loading-container">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
<div id="weather-container">
<div class="weather-symbol">
<canvas id="skycon-img" width="125px" height="125px"></canvas>
</div>
<div class="daily-forecast">
<p id="condition"></p>
<p id="temp"></p>
<p id="location"></p>
</div>
<div class="error-message"></div>
<div class="forecast"></div>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maps.google.com/maps/api/js?key=AIzaSyCn1V305-jy4sVx3IiaRs5Lczmc6vU7ptI"></script>
<!--build:js js/weather.min.js -->
<script type="text/javascript" src="js/moment.js"></script>
<script type="text/javascript" src="js/skycons.js"></script>
<script type="text/javascript" src="js/weather.js"></script>
<!-- endbuild -->
</html>