-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (50 loc) · 2.26 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
<!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://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/themes/base/jquery-ui.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/open-iconic/1.1.1/font/css/open-iconic-bootstrap.min.css" integrity="sha512-UyNhw5RNpQaCai2EdC+Js0QL4RlVmiq41DkmCJsRV3ZxipG2L0HhTqIf/H9Hp8ez2EnFlkBnjRGJU2stW3Lj+w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./assets/css/style.css" />
<title>Weather Dashboard</title>
</head>
<body>
<div class="container-fluid">
<div class="row no-gutters">
<!-- page header -->
<header class="col-12 bg-dark text-light sticky-top d-flex flex-column mt-4 mt-lg-3 p-4 p-lg-3">
<h1 class="text-center">
Weather Dashboard
</h1>
</header>
<!-- main body -->
<main class="col-12 d-flex flex-column p-2">
<div class="row ">
<!-- search area-->
<div class="col-12 col-md-4 col-lg-3 col-xl-2" id="search">
<h2>Search for a City:</h2>
<form id="search-form">
<input name="search-city" id="search-city" type="text" autofocus="true" class="form-input" />
<button type="submit" class="btn">Search</button>
</form>
<ul class="city-group" id="city-group"></ul>
</div>
<!-- current weather area -->
<div class="col-12 col-md-8 col-lg-9 col-xl-10">
<div class="row" id="results">
</div>
<!-- 5-day forecast area -->
<div class="row justify-content-between" id="future">
</div>
</div>
</div>
</main>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>