-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (41 loc) · 1.92 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
<!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>Fan Food</title>
<!-- 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" />
</head>
<body>
<section class="hero is-primary 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>
<div id="container">
<section class="section">
<form id="event-form" action="">
<label class="title is-4" for="event-search">Enter an Event.</label>
<p class="title is-4" for="Find-nearby-places">Find nearby places.</p>
<input type="textbox" name="event-search" id="event-search" class="input is-primary" placeholder="Search Event" />
<br />
<button class="button is-primary" id="event-search-submit" type="submit">Search</button>
</form>
<div id="event-search-results"></div>
</section>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.slim.js" integrity="sha256-HwWONEZrpuoh951cQD1ov2HUK5zA5DwJ1DNUXaM6FsY=" crossorigin="anonymous"></script>
<script src="https://unpkg.com/dayjs@1.8.21/dayjs.min.js"></script>
<script>
dayjs().format();
</script>
<script src="./assets/js/script.js"></script>
</body>
</html>