-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·55 lines (40 loc) · 1.47 KB
/
index.html
File metadata and controls
executable file
·55 lines (40 loc) · 1.47 KB
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
<!DOCTYPE html>
<html>
<head>
<title>localWeather</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
type="text/css" />
<link rel="stylesheet prefetch"
href="https://cdnjs.cloudflare.com/ajax/libs/weather-icons/2.0.9/css/weather-icons.min.css" type="text/css">
<link rel="stylesheet prefetch"
href="https://cdnjs.cloudflare.com/ajax/libs/weather-icons/2.0.9/css/weather-icons-wind.min.css" type="text/css">
</head>
<body>
<div class=backgroundLayer>
<div class=cardContent>
<div class=cardHeader>
<div class=cardTitle>
localWeather
</div>
<div class=cardIcon>
</div>
</div>
<div class=cardData>
</div>
<div class=cardSwitch>
<label class="switch">
<input type="checkbox" id="measure" checked>
<div class="slider round"></div>
</label>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script type="text/javascript" src="script.js"></script>
<div class=dataSource>
<a href="https://darksky.net/poweredby/">Powered by Dark Sky</a>
</div>
</body>
</html>