-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (25 loc) · 1.11 KB
/
Copy pathindex.html
File metadata and controls
33 lines (25 loc) · 1.11 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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Weather App</title>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css'>
<link rel='stylesheet prefetch' href='https://gitcdn.github.io/bootstrap-toggle/2.2.2/css/bootstrap-toggle.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container-fluid text-center">
<h1>Weather App</h1>
<div id="user-location"></div>
<div id="temperature"></div>
<div id="description"></div>
<div id="weather-image"></div>
<input id="unit-toggle" checked data-toggle="toggle" data-on="<sup>o</sup>C"
data-onstyle="success" data-offstyle="info" data-off="<sup>o</sup>F" type="checkbox">
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js'></script>
<script src='https://gitcdn.github.io/bootstrap-toggle/2.2.2/js/bootstrap-toggle.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>