-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (47 loc) · 2.12 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
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather Dashboard</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/3b66b0ed5f.js" crossorigin="anonymous"></script>
<script src="moment.min.js"></script>
</head>
<body>
<div class="jumbotron" id="dashboard-head">
<h1 class="display-5 text-center">Weather Dashboard</h1>
</div>
<div class="container">
<div class="row">
<!-- Search City buttons-->
<div class="col-lg-3 col-md-12 city-buttons">
<div id="last-searched-cities">
<div class="input-group">
<input type="text" id="city" placeholder="Type in a City">
<div class="input-group-append">
<button class="btn btn-primary" id="search-city"><i class="fas fa-search"></i></button>
</div>
</div>
<div class="btn-group-vertical"></div>
</div>
</div>
<!-- 5 Day Weather Forecast for City Selected -->
<div class="col-lg-9 col-md-12">
<section id="current-weather" class="text-center">
<h2 id="city-header"></h2>
<h5 id="date"></h5>
<p id="current-weather-data"></p>
</section>
<section id="future-forcecast">
<h2 class="forecast-label"></h2>
<div class="card-group"></div>
</section>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>