-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 1.88 KB
/
index.html
File metadata and controls
46 lines (46 loc) · 1.88 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/css/reset.css"/>
<link rel="stylesheet" href="./assets/css/style.css"/>
<title>Weather Dashboard</title>
</head>
<body>
<header class="header">
<h1>Weather Dashboard</h1>
</header>
<main class="main">
<section class="searchContainer">
<div class="searchBoxContainer">
<h2 class="searchTitle">Search for a City:</h2>
<input id="searchBox" class="searchBox" type="text" placeholder="Search...">
<button id="searchBtn" class="searchBtn">Search</button>
</div>
<div class="searchHistory">
</div>
</section>
<section class="results">
<div class="weatherToday">
<h2 id="locationDate" class="locationDate"></h2>
<ul class="stats">
<li id="tTemp" class="tTemp"></li>
<li id="tWind" class="tWind"></li>
<li id="tHumid" class="tHumid"></li>
<li id="tuv" class="tuv"></li>
</ul>
</div>
<div class="fiveDayForecast">
<h3>5-Day Forecast:</h3>
<div class="fiveDays">
</div>
</div>
</section>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js" integrity="sha512-qTXRIMyZIFb8iQcfjXWCO8+M5Tbc38Qi5WzdPOYZHIlZpzBHG3L3by84BBBOiRGiEb7KKtAOAs5qYdUiZiQNNQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="assets/js/script.js"></script>
</body>
</html>