-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
95 lines (72 loc) · 3.93 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
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
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Picniq</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<!-- Purecss Library -->
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.3/build/pure-min.css" integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.3/build/grids-responsive-min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!-- bootstrap stylesheet -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<!-- Team CSS file -->
<link rel='stylesheet' type='text/css' media='screen' href='style.css'>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/603553199c.js" crossorigin="anonymous"></script>
<!-- google fonts -->
<link href="https://fonts.googleapis.com/css2?family=Lato&family=Quando&display=swap" rel="stylesheet">
</head>
<body>
<div class="all">
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-4">picniq</h1>
<p>A new community dining experience...</p>
</div>
</div>
<div class="pure-g" id="menu">
<div class="pure-u-1">
<div class="home-menu pure-menu pure-menu-horizontal pure-menu-tucked">
<!-- <h3 class="pure-menu-heading" placeholder="Enter Address">Quarantine Picnic</h3> -->
<form class="pure-form-stacked">
<fieldset>
<input type="Location" id="addressInput" placeholder="Enter Address">
<button type="submit" class="pure-button pure-button-primary" id="submitBtn">Picnic</button>
<br>
<!-- Putting an ID and data-attribute here to reference in the javascript file -->
<h2 id="eitherORsearch" data-searchTYPE="">or...</h2>
<!-- <br> -->
<button type="submit" class="pure-button pure-button-primary" id="locationBtn">Search using your current location!</button>
<br>
</fieldset>
</form>
</div>
</div>
</div>
<div class="pure-g" id="resultsDiv">
<div class="pure-u-1 pure-u-sm-1-2">
<h2 id="restaurantsToggle">Restaurants <i class="fas fa-sort"></i></h2>
<div class="l-box" id="restaurantsDiv"></div>
<!-- DIV WHERE THE RESTAURANT CONTENT GETS DUMPED -->
</div>
<div class="pure-u-1 pure-u-sm-1-2">
<h2 id="parksToggle">Parks <i class="fas fa-sort"></i></h2>
<div class="l-box" id="parksDiv"></div>
<!-- DIV WHERE THE PARKS CONTENT GETS DUMPED -->
</div>
</div>
</div>
<!-- Moment.js Library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<!-- jQuery Library -->
<script src="https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<!-- Team Created Javascript File -->
<script src='script.js'></script>
</body>
</html>