forked from Ada-C22/group-fansite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (59 loc) · 2.26 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
<!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>¡Holy Guacamole!</title>
<link rel="stylesheet" href="./styles/index.css">
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<header>
<nav class="nav-bar">
<h1 id="title">¡Holy Guacamole!</h1>
<section >
<ul class="nav-bar-links">
<li><a href="index.html">Home</a></li>
<li><a href="pages/recipes.html">Recipe</a></li>
<li><a href="pages/facts.html">Facts</a></li>
<li><a href="pages/gallery.html">Gallery</a></li>
<li><a href="pages/memes.html">Memes</a></li>
</ul>
</section>
</nav>
</header>
<main>
<!-- Single Orange Content Box -->
<div class="content-box">
<section id="introduction">
<h2>Welcome to the World of Guacamole</h2>
<p>Guacamole is not just a dip; it's a cultural icon! Join us as we explore the vibrant history, the beloved flavors, and the magic of guacamole in Mexican cuisine.</p>
</section>
<section id="why-guacamole">
<h2>Why We Love Guacamole</h2>
<p>Guacamole has been a part of Mexican cuisine for centuries, bringing people together to share moments of joy, flavor, and culture. Whether you enjoy it on tacos, nachos, or just with chips, guacamole is a universal favorite!</p>
</section>
<section id="guacamole-culture">
<h2>The Culture of Guacamole</h2>
<p>In Mexico, guacamole is more than just a food; it's a part of the culture. It's often prepared fresh and served in a communal setting, where everyone shares in the experience of making and eating it together.</p>
</section>
</div>
</main>
<footer id="footer">
<section id="footer-text">
<h4>GUAC GIRLS 🥑</h4>
<span>© 2024 </span>
</section>
<nav id="footer-links">
<ul>
<li><a href="#">Home</a></li>
<li><a href="pages/recipes.html">Recipe</a></li>
<li><a href="pages/facts.html">Facts</a></li>
<li><a href="pages/gallery.html">Gallery</a></li>
</ul>
</nav>
<p>"We like to 'mole 'mole"</p>
</footer>
</body>
</html>