-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (36 loc) · 1.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css">
<title>Weather Dashboard</title>
</head>
<body>
<div class="container-fluid vh-100 vw-100 p-0">
<header class="h1 py-3 m-0 bg-primary text-center text-white vw-100">Weather Dashboard</header>
<section class="row pl-3">
<form class="col-4 bg-white vh-100" id="form">
<div class="py-3">
<label class="py-3 h4 font-weight-bold" for="weather-search">Search for a City:</label>
<input class="form-control form-control-lg py-3 search city-name" type="text" placeholder="City"
id="weather-search">
</div>
<button type="button" class="btn btn-primary btn-lg btn-block submit-button">Search</button>
<hr />
<ul id="display">
</ul>
</form>
<main class="container col-8 vh-100 h1">
<section class="border border-secondary mt-10 mr-3" id="dashboard">
</section>
<h6 class="mt-3 font-weight-bold">Five Day Forecast</h1>
<ul class="row h-80 p-2" id="five-day-forcast">
</ul>
</main>
</section>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.20.1/moment.min.js"></script>
<script src="./weather-dashboard/weather.js"></script>
</body>
</html>