-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle-event.html
33 lines (32 loc) · 1.44 KB
/
single-event.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
<!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" />
<!-- Bulma CSS Framework -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css" />
<!-- Main Local CSS Styling-->
<link rel="stylesheet" href="./assets/css/style.css" />
<title>Results - Fan Food</title>
</head>
<body>
<div>
<section class="hero is-primary has-background hero-images-style">
<img class="hero-background is-transparent hero is-primary" src="assets/sports-crowd.jpg" alt="sports crowd " />
<div class="hero-body">
<div class="container">
<h1 class="title is-1">Fan Food</h1>
</div>
</div>
</section>
<section class="section">
<h3 label class="title is-4">Showing restaurants near <span id="event-name"></span></h3>
<div id="container"></div>
<div id="back-container"></div>
</section>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.6.0.slim.js" integrity="sha256-HwWONEZrpuoh951cQD1ov2HUK5zA5DwJ1DNUXaM6FsY=" crossorigin="anonymous"></script>
<script src="./assets/js/single-event.js"></script>
</html>