-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (101 loc) · 3.96 KB
/
Copy pathindex.html
File metadata and controls
107 lines (101 loc) · 3.96 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FELLOWSHIP</title>
<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=Orbitron:wght@400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<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=Orbitron:wght@400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/d6bd902a44.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav class="nav">
<a href="index.html" class="logo">☕Coffee Bliss</a>
<ul class="menu">
<li><a href="#about">About</a></li>
<li><a href="#menu">Menu</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main id="main">
<section class="hero">
<div class="hero-content">
<h1>Discover <br>
Your Perfect Brew</h1>
<p>Handcrafted coffee, warm vibes, unforgettable moments.</p>
<a href="#menu" class="btn">Explore Menu</a>
</div>
</section>
<section id="about" class="features">
<article>
<h2>Our Story</h2>
<p>Rooted in tradition, we blend community spirit with artisanal coffee roasting to serve you the best.</p>
</article>
<article>
<h2>Quality Beans</h2>
<p>Sourced from sustainable farms, our Arabica beans are roasted to perfection.</p>
</article>
<article>
<h2>Cozy Atmosphere</h2>
<p>Relax in our comfortable seating, free Wi-Fi, and friendly ambiance.</p>
</article>
</section>
<section id="menu" class="menu-list">
<h2>Our Popular Picks</h2>
<div class="menu-cards">
<div class="card">
<img src="espresso.jpg" alt="Espresso shot">
<h3>Espresso</h3>
<p>Rich and bold, our signature shot to kickstart your day.</p>
</div>
<div class="card">
<img src="cappuccino.jpg" alt="Cappuccino cup">
<h3>Cappuccino</h3>
<p>Frothy, smooth, and perfectly balanced with cocoa dusting.</p>
</div>
<div class="card">
<img src="cappuccino.jpg" alt="Latte art">
<h3>Latte</h3>
<p>Creamy and comforting, a classic favorite for any time.</p>
</div>
<div class="card">
<img src="espresso.jpg" alt="Mocha drink">
<h3>Mocha</h3>
<p>A chocolatey twist on coffee bliss.</p>
</div>
</div>
</section>
<section id="testimonials" class="testimonials">
<h2>What Our Customers Say</h2>
<div class="testimonial-cards">
<blockquote>
“The best coffee in town! The staff makes me feel at home.”
<cite>— Nafisa A. U.</cite>
</blockquote>
<blockquote>
“A hidden gem! Their latte art is unmatched.”
<cite>— Joash G.</cite>
</blockquote>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<p>© 2025 Coffee Bliss. All rights reserved.</p>
<div class="footer-social">
<a href="#" aria-label="Facebook"><i class="fa-brands fa-facebook"></i></a>
<a href="#" aria-label="X"><i class="fa-brands fa-x-twitter"></i></a>
<a href="#" aria-label="Instagram"><i class="fa-brands fa-instagram"></i></a>
</div>
</div>
</footer>
</body>
</html>