-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (42 loc) · 1.47 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
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>local Weather</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Inconsolata:400,700" rel="stylesheet">
<link href="css/owfont-regular.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3" id="action-box">
<div class="row">
<div class="col-xs-12 text-center">
<p id="location"></p>
<hr>
</div>
</div>
<div class="row">
<div class="col-xs-12 text-center">
<p id="condition"></p>
<i class="owf" id="icon"></i>
</div>
</div>
<div class="row" id="data">
<div class="col-xs-6 text-center">
<button id="wind"></button>
</div>
<div class="col-xs-6 text-center">
<button id="temp"></button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>