-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (47 loc) · 2.58 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>International food festival</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;600&display=swap" rel="stylesheet">
<!-- external css file -->
<link rel="stylesheet" href="css/general_styles.css">
</head>
<body>
<div class="grid-container">
<div class="brand">Food event</div>
<div class="page-links">
<a href="index.html"><button class="menu-button">Home</button></a>
<a href="gallery.html"><button class="menu-button">Gallery</button></a>
<a href="about.html"><button class="menu-button">About</button></a>
</div><!-- closes the page-links div -->
<div class="main">
<h1>Indulge in a World of Flavors</h1>
<figure>
<img class="home_splash" src="images/home_splash.jpg" alt="An image of different cuisines.">
<figcaption>Photo taken by Lily Banse src: unsplash.com</figcaption>
</figure>
<p>Experience a gastronomic journey like never before at our on-campus International Food Festival.
<br> This unique event celebrates the rich diversity of cultures present on our campus by bringing you
an array of delectable dishes from around the globe. Each food stall represents a different country,
offering you an authentic taste of home-cooked delights prepared by our very own international students.
</p>
<h2>Date: 24th August | Time: 10am | Location: UQ great court</h1>
<h1>Embark on a Culinary Adventure</h1>
<p>Prepare your taste buds for an adventure like no other!
<br> Whether you're a seasoned foodie or someone looking to explore new flavors,
our International Food Festival promises to delight every palate. From the tantalizing spices of India to the savory delicacies of Italy,
the festival is a celebration of global cuisine that will leave you craving for more.
</p>
<button id="discount-code">Give me a discount code!!</button>
<p id="your-discount-code">Click the button above to reveal your discount code.</p>
</div>
</div>
<script src="js/site_interactions.js"></script>
</body>
</html>
<! -- food festival -->