-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (24 loc) · 1 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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Weather </title>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css'>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.3/animate.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container text-center">
<h1> Local Weather </h1>
<h2 id="city" ></h2>
<h3 id="weather"></h3>
<div id="icon"></div>
<h4 id="condition"></h4>
<button type="button" class="btn btn-success c" id="celsius">Celsisus</button>
<button type="button" class="btn btn-primary" id="fahrenheit">Fahrenheit</button>
</div>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>