-
Notifications
You must be signed in to change notification settings - Fork 0
/
search-results.html
67 lines (63 loc) · 2.85 KB
/
search-results.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Friendly Neighborhood Cocktail Concierge</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<link rel="icon" type="image/x-icon" href="./assets/images/Cocktail Icon.png">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<section class="hero hero-bg-img">
<div class="hero-body">
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<p class="title navbar-item has-text-white">Cocktail Concierge</p>
<a role="button" class="navbar-burger has-text-white" aria-label="menu" aria-expanded="false"
data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item has-text-white" href="./index.html">
Home
</a>
<p class="navbar-item has-text-white">|</p>
<a class="navbar-item has-text-white" href="./favorites.html">
Favorites
</a>
<p class="navbar-item has-text-white">|</p>
<a class="navbar-item has-text-white" href="./random.html">
Random
</a>
</div>
</div>
</nav>
</div>
</section>
<main>
<container class="container is-flex is-justify-content-center ">
<div class="box mt-6 error-msg">
<h1 class="subtitle"> Search Results <span id="search-input"></span></h1>
</div>
<!-- made this seperate container to center -->
</container>
<div class="table-container is-flex is-justify-content-center">
<table class="table is-striped is-hoverable">
<tbody id="result-list">
<!-- Displaying Results here -->
</tbody>
</table>
</div>
<main>
<script src="https://code.jquery.com/jquery-3.6.1.min.js"
integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ=" crossorigin="anonymous"></script>
<script src="./assets/js/results.js"></script>
<script src="./assets/js/burger.js"></script>
</body>
</html>