-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (97 loc) · 4.22 KB
/
index.html
File metadata and controls
124 lines (97 loc) · 4.22 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>"What's for Dinner?"</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body id="body1">
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" href="index.html">"What's for Dinner?"</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link active" href="index.html">Restaurant Finder<span class="sr-only">(current)</span></a>
<a class="nav-link" href="recipeFinder.html">Recipe Finder</a>
</div>
</div>
</nav>
<!-- Jumbotron -->
<div class="jumbotron">
<h1 class="display-4 text-center text-white">Restaurant Finder</h1>
<p class="lead text-center text-white">Find a restaurant in your area. Click below to use your current location and select a restaurant category.</p>
<hr class="my-4">
<!-- Current Location -->
<div class="row">
<div class ="col-12">
<div class="row d-flex justify-content-center">
<input id="location" class="col-4" type="text" placeholder="Enter your location..." />
<button class="curLocation btn btn-primary" href="#" type="button">
<i class="fas fa-map-marker-alt"></i> Use my Current Location</button>
</div>
<br>
<!-- "And" -->
<div class="row d-flex justify-content-center">
<p class="text-center">and</p>
</div>
<!-- Dropdown Selection -->
<div class="row d-flex justify-content-center">
<input id="keywords" class="col-4" type="text" placeholder="Enter any keywords...">
<select id="categories" class="custom-select" style="width:200px;">
<option>Select a Category...</option>
<option>Breakfast & Brunch</option>
<option>Caribbean</option>
<option>Chinese</option>
<option>Indian</option>
<option>Italian</option>
<option>Japanese</option>
<option>Mediterranean</option>
<option>Mexican</option>
<option>Middle Eastern</option>
<option>Moroccan</option>
<option>Vegan</option>
<option>Vegetarian</option>
</select>
</div>
<br>
<!-- Search Button -->
<div class="row d-flex justify-content-center">
<a id="searchBtn" class="btn btn-primary" href="#" role="button">Search</a>
</div>
</div>
</div>
</div>
<!-- Results -->
<div class="results-container">
<h5>Results</h5>
<br>
<!-- First Row Results -->
<div class="card-deck">
<div id="1stRow" class="row">
</div>
<br> <br>
<!-- Second Row Results -->
<div id="2ndRow" class="row">
</div>
<br>
</div>
</div>
<br>
<!-- Footer -->
<footer class="page-footer font-small blue pt-4">
<div class="footer-copyright text-center py-3">© 2020 Copyright: "The Dangerous Debuggers"
</div>
</footer>
<!-- Scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg==" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/5fbb9ffb93.js" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>