-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (79 loc) · 3.17 KB
/
index.html
File metadata and controls
91 lines (79 loc) · 3.17 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>That's Trashy</title>
<!-- Favicon Link -->
<link rel="shortcut icon" href="./assets/images/favicon.ico">
<!--Google Fonts-->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap" rel="stylesheet">
<!--Materialize-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!-- Reset CSS file -->
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<!-- External CSS file -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<!--Open layers-->
<script src="https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/build/ol.js"></script>
<body>
<div class="container z-depth-5 trashyHeader">
<div class="row thatsTrashy">
<div class="col l12">
That's Trashy
</div>
</div>
<div class="row thatsTrashySub">
<div class="col l12">
Find recycling centers near you.
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class = "col l12">
<form id="initial-search-box">
<input type="text" id="city-search" placeholder=" Enter Your City Name">
<button class="btn waves-effect waves-light" type="submit" name="action" id="submit">Submit
<i class="material-icons right"></i>
</button>
</form>
</div>
</div>
<div class="row">
<div class = "offset-l3 col l6 offset-l3 z-depth-5" id = "weather-display">
<!--Weather Info Displayed Here Using jQuery-->
<span id="weather-display"></span>
</div>
</div>
<div class="row">
<div class = "col l6">
<div id = "recycling-centers" class = "z-depth-5">
<!-- Display the recycing centers -->
<h2 id="listTitle" class = "z-depth-5"></h2>
<br />
<div id="centerList"> </div>
</div>
</div>
<div class = "col l6">
<div id="map" class = "z-depth-5">
<!--Map Displayed Here using jQuery and Open Layers Map-->
</div>
</div>
</div>
<div class="row">
<div class = "col l12">
<!-- More info -->
<div id="moreInfo"></div>
</div>
</div>
</div>
<!--Materialize-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<!-- JQuery -->
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
<!-- External JS file -->
<script src="assets/javascript/project.js"></script>
</body>
</html>