-
Notifications
You must be signed in to change notification settings - Fork 0
/
recommended.html
71 lines (70 loc) · 2.4 KB
/
recommended.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
62
63
64
65
66
67
68
69
70
71
<!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">
<title>Population Density Checker - Recommended</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<header>
<a href="index.html">
<img src="./assets/images/population-density-checker-logo-alt-white.svg" />
<h1>Population Density Checker</h1>
</a>
<nav>
<ul>
<li>
<a class="hover:bg-orange-600" href="./about-our-team.html">Our Team</a>
</li>
<li>
<a class="hover:bg-orange-600" href="./services.html">Services offered</a>
<!-- added these from tailwind as an example -->
</li>
<li>
<a class="hover:bg-orange-600" href="./login.html">Login</a>
<!-- added these from tailwind as an example -->
</li>
<li>
<a class="hover:bg-green-600" href="./map.html">MAP</a>
</li>
<li>
<a class="hover:bg-orange-600" href="./recommended.html">Recommended</a>
<!-- added these from tailwind as an example -->
</li>
</ul>
</nav>
</header>
<main>
<div>
<h1>Recommended</h1>
</div>
<section class="search-container" id="searchContainer">
<h2 class="search-header">Search Toronto Neighbourhoods!</h2>
<input type="search" role="search" class=search-field id="search" />
<img class="search-icon" id="searchIcon" role="button" alt="search icon" src="./assets/images/search-svgrepo-com.svg" />
<section>
<h3>Recently Searched Neighbourhoods</h3>
<div class="search-results-wrapper" id="searchResultsWrapper">
<h4>Search results:</h4>
<ul class="search-results-list" id="searchResultsList">
<li></li>
<button alt="favourite neighbourhood button" class="btn" id="favouriteBtn" role="submit">Favourite</button>
</ul>
</div>
</section>
<section>
<h3>Favourites</h3>
</section>
</section>
</main>
<footer>
<script src="./assets/js/script.js"></script>
<h2>Copyright © 2022 PDC Inc. All Rights Reserved.</h2>
<h3>Last updated March 2022.</h3>
</footer>
<script src="./assets/js/mapbox.js"></script>
<script src="./assets/js/recommended.js"></script>
</body>
</html>