-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (45 loc) · 1.75 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 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" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
<title>Weather Dashboard</title>
</head>
<body>
<nav class="nav justify-content-center bg-dark text-light">
<h1>Weather Dashboard</h1>
</nav>
<main class="row ml-3">
<aside class="col-md-3">
<h4>Search for a City:</h4>
<!-- Search form -->
<form class="form-inline d-flex md-form form-sm search">
<input class="form-control form-control-sm mr-3 w-75 city-search" type="text" placeholder="Search"
aria-label="Search">
<i class="fas fa-search" aria-hidden="true"></i>
</form>
<div class="list-group cities mt-2">
</div>
</aside>
<section class="col-md-9">
<div class="card text-left">
<div class="card-body current-weather">
</div>
</div>
<div class="mt-3 mr-3">
<h3>5-Day Forecast:</h3>
<div class="forecast row justify-content-between"></div>
</div>
</section>
</main>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script src="script.js"></script>
</body>
</html>