-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (30 loc) · 1.13 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
46
47
48
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>The weather guy</title>
<link rel='stylesheet prefetch' href='http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container-fluid">
<div id="main" class="row">
<div class="col-xs-12 title">
<h1 class="text-center">The Weather App</h1>
</div>
<div class="col-xs-12">
<div class="circle text-center">
<div class="temp"></div>
<div class="celcius">celcius</div>
<img class="my-icon" src="" alt="" /><span class="cond"> </span>
</div>
<div class="location text-center"></div>
<div class="text-center" style="font-size: 10px">Click the temp value to switch between celcius and fahrenheit.</div>
</div>
</div>
</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>