-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (58 loc) · 2.86 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
58
59
60
61
<!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="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://code.jquery.com/ui/1.13.0/themes/base/jquery-ui.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Fontdiner+Swanky&family=Permanent+Marker&family=Amatic+SC:wght@700&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="./assets/css/style.css" />
<link rel="shortcut icon" href="./assets/img/d.png" />
<title>Weather Dashboard</title>
</head>
<body>
<header id="header" class="d-flex">
<h1 class="col-12 py-2">The Weather Dashboard</h1>
</header>
<div id="mainWrapper">
<main id="main" class="container-fluid d-flex">
<section id="cityContainer" class="col-3 py-3 m-4">
<section id="searchCities" class="border-bottom d-flex flex-column align-items-stretch">
<fieldset class="my-1">
<h2>Search for a City:</h2>
<input type="text" id="cityInput" placeholder="Enter city name" />
</fieldset>
<a id="searchCity" class="btn btn-lg btn-bd-primary my-1">Search</a>
</section>
<section id="savedCities" class="my-2">
<h2>Your saved locations:</h2>
<ul id="citiesList">
<li>None</li>
</ul>
</section>
</section>
<section id="weatherData"
class="col-8 py-3 m-4 d-flex flex-column align-items-stretch justify-content-between">
</section>
</main>
</div>
<footer id="footer" class="d-flex">
<p class="col-12 py-3">
<i class="far fa-copyright" aria-label="copyright"></i> 2024 DrumDev<br />
<a href="https://github.com/mjamesd/wk6-weather-dashboard" target="_blank">View Github Repo</a>
</p>
</footer>
<!-- SCRIPTS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.13.0/jquery-ui.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>