-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (49 loc) · 2.67 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
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Weather app</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta.2/css/bootstrap.css'>
<link href="https://fonts.googleapis.com/css?family=Abel|Quicksand:300,400,500" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/weather-icons.min.css">
<link rel="stylesheet" href="css/weather-icons-wind.min.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col">
<h3>Today's Weather</h3>
<div id="location"></div>
<div class="d-flex justify-content-center align-items-baseline otherconditionsOne">
<div id="day" class="otherconditionsOne"></div>
<div id="time" class="otherconditionsOne"></div>
</div><!-- time -->
<div id="weather"></div>
<div class="d-flex justify-content-center align-items-center otherconditionsThree">
<div id="icon"></div>
<div id="temp"></div>
</div><!-- temp icon -->
<div class="d-flex justify-content-center align-items-center">
<button type="button" id="celsius" class="btn btn-light"><i class="wi wi-celsius"></i></button>
<button type="button" id="fahrenheit" class="btn btn-light"><i class="wi wi-fahrenheit"></i></button>
</div><!-- units buttons -->
<div class="d-flex justify-content-center align-items-flex-end otherconditionsTwo">
<div id="humidity" class="otherconditionsTwo"></div>
<div id="windspeed" class="otherconditionsTwo"></div>
</div><!-- otherconditions -->
</div><!-- col -->
</div><!-- row -->
</div><!-- container -->
<footer>Made by <a href="http://www.renishachristie.com">Renisha Christie</a></footer>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta/js/bootstrap.min.js'></script>
<script src="js/index.js"></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBlfhTguKmRPS94B4TAsEaX7iS-AocGyIE&callback=getCoords">
</script>
</body>
</html>