-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
125 lines (76 loc) · 3.12 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
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
125
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Custom styles for this template -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> Foodist App Homepage </title>
<!-- Compressed CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.1/css/bulma.min.css">
<link href="./assets/css/style.css" rel="stylesheet">
</head>
<body>
<nav class="navbar is-white" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="./index.html">
<img src="./assets/images/fig-dribbble.gif" width="50" height="28">
</a>
<a role="button" class="navbar-brand" aria-label="menu" aria-expanded="false"
data-target="navbarBasicExample">
<a href="./index.html" class="navbar-item is-active navtext">
Home
</a>
<a href="./lists.html" class="navbar-item navtext">
Your List
</a>
<a href="./map.html" class="navbar-item navtext">
Map
</a>
</a>
</div>
</nav>
<div class="column is-full topbar">
<div class="columns is-full headertext">
<h1>THE FOODIST</h1>
</div>
<div class="columns is-full subtext">
<p>Restaurants for your bucket list</p>
</div>
<div class="columns is-full">
<div class="column is-half search">
<div class="hero-body">
<div class="field card searchHomePage">
<div class="field">
<div class="control ">
<input class="input is-warning searchCity" type="text"
placeholder="Where do you want to go?">
</div>
</div>
<div class="control">
<div class="select is-warning">
<select class="select foodSelect">
<option>Choose a food category</option>
</select>
</div>
</div>
<div class="control">
<button class="button submit is-warning">Search</button>
</div>
</div>
</div>
</div>
</div>
<div class="column is-one-half">
<div class="card searchResults">
<card class="card results"></card>
</div>
</div>
</div>
<div class="container is-fluid searchresults">
</div>
<script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="assets/javascript/script1.js"></script>
</body>
</html>