-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/pure-min.css" integrity="sha384-Uu6IeWbM+gzNVXJcM9XV3SohHtmWE+3VGi496jvgX1jyvDTXfdK+rfZc8C1Aehk5" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/grids-responsive-min.css">
<link rel="stylesheet" href="./assets/css/style.css">
<title>Weather Dashboard</title>
</head>
<body>
<header>
<h1 class="center">Weather Dashboard</h1>
</header>
<div class="pure-g">
<aside class="pure-u-1 pure-u-lg-6-24">
<section>
<form class="pure-form pure-form-stacked center" action="">
<label class="aside-element" for="city"><h2>Search for City:</h2></label>
<input class="aside-element" type="search" name="city" id="city" placeholder="Keystone">
<button id="search-button" class="aside-element pure-button pure-button-primary" type="button">Search</button>
</form>
</section>
<section id="city-list" class="center"></section>
</aside>
<main class="pure-u-1 pure-u-lg-18-24">
<div id="current-weather-box"></div>
<div id="future-weather-box" class="hidden">
<h2>5-day Forcast:</h2>
<div class="pure-g" id="card-list"></div>
</div>
</main>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.10.7/dayjs.min.js" integrity="sha512-bwD3VD/j6ypSSnyjuaURidZksoVx3L1RPvTkleC48SbHCZsemT3VKMD39KknPnH728LLXVMTisESIBOAb5/W0Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="./assets/javascript/script.js"></script>
</body>
</html>