-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (44 loc) · 1.67 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fetch/2.0.3/fetch.js"></script>
<script src="https://cdn.jsdelivr.net/npm/promise-polyfill@7/dist/polyfill.min.js"></script>
<script src="https://cdn.polyfill.io/v2/polyfill.min.js"></script>
<title>Local Weather</title>
<link rel="stylesheet" type="text/css" href="lwa.css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<script type="text/javascript" src="lwa.js"></script>
<script type="text/javascript" src="https://darkskyapp.github.io/skycons/skycons.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css" integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="app">
<div class="subcontainer">
<div class="temp-location">
<div class="temp-data">
<span class="temp"></span>
<span class="units">°F</span>
</div>
<div class="location">
<p><span class="city"></span><br>
<span class="country" id="country"> </span></p>
</div>
</div>
</div>
<div class="weather-info">
<canvas id="" width="300" height="300"></canvas>
<span class="summary"></span>
</div>
<div class="toggle">
<span>°F</span>
<label class="switch">
<input type="checkbox" name="checkbox">
<span class="slider round"></span>
</label>
<span>°C</span>
</div>
</div>
</div>
</body>
</html>