-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Toronto Waste Lookup</title>
<link type="text/css" rel="stylesheet" href="assets/css/style.css" />
<script type="text/javascript" src="assets/js/lib/jquery-3.3.1.min.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
</head>
<body>
<div>
<div id="header">
<h1>Toronto Waste Lookup</h1>
</div>
<div id="searchBar">
<input type="text" placeholder="Search" />
<button><i class="fas fa-search fa-flip-horizontal fa-3x"></i></button>
</div>
<div id="searchContainer" class="Results">
</div>
</div>
<div id="favourites">
<h2>Favourites</h2>
<div class="Results"></div>
</div>
<script type="text/javascript" src="assets/js/waste_lookup.js"></script>
</body>
</html>