-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (45 loc) · 2.43 KB
/
index.html
File metadata and controls
46 lines (45 loc) · 2.43 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Bootsrap CDN -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link href="spinner.css" rel="stylesheet">
<title>free Weather API</title>
</head>
<body style="background-color: #1ABC9C">
<div class="container-fluid">
<h1 class="text-center">free Weather API <br><small>Please disable AdBlock if it doesn't work!</small></h1><br><br>
<div class="cuurentInfo">
<ul class="list-inline text-center">
<li class="pressure">Pressure <span class="label label-primary" style="display: none;">Loading</span></li>
<li class="humidity">Humidity <span class="label label-primary" style="display: none;">Loading</span></li>
<li class="visibility">Visibility <span class="label label-primary" style="display: none;">Loading</span></li>
<li class="windspeed">Wind Speed <span class="label label-primary" style="display: none;">Loading</span></li>
</ul>
</div>
<h1 class="info text-center"></h1>
<canvas class="center-block" id="weatherICON" width="128" height="128"></canvas>
<h2 class="temperature text-center"></h2>
<button id="tm" class="btn btn-primary center-block btn-lg" value="C">Celsius</button>
</div>
<!-- Spinner Loading -->
<div class="spinner">
<div class="rect1"></div>
<div class="rect2"></div>
<div class="rect3"></div>
<div class="rect4"></div>
<div class="rect5"></div>
</div>
<!-- -->
<!-- Bootstrap & jQuery CDN -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="skycons.js"></script>
<script src="weather.js"></script>
</body>
</html>