-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (32 loc) · 1.39 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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Weather App</title>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/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">
<h1 class="display-4">Weather Application</h1>
<p class="lead">Turn on your location to get the latest weather information for your area.</p>
<br>
<h4 id="city"></h4>
<h4 id="temp"></h4>
<h4 id="weather"></h4>
<img id="icon">
<br>
<div class="converter">
<input type="checkbox" checked data-toggle="toggle" data-onstyle="success" data-offstyle="info" data-size="small" data-off=" °F" data-on=" °C" data-style="ios" id="toggle-one"></div>
<br>
<br>
<footer>Created by <a href="https://github.com/clarakosi">clarakosi</a>.</footer>
</div>
<script src='https://code.jquery.com/jquery-3.2.1.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js'></script>
<script src='https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/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>