-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (106 loc) · 5.62 KB
/
index.html
File metadata and controls
115 lines (106 loc) · 5.62 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
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brewlab Store</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Abel&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap">
</head>
<body>
<header class="header">
<div class="logo-container">
<img class="logo" src="source/coffee-machine.png" alt="Brewlab Logo">
<p class="company-name">BREWLAB</p>
</div>
<nav>
<ul class="nav-list">
<li><a href="index.html" class="nav-link active">Home</a></li>
<li><a href="products.html" class="nav-link">Our Products</a></li>
<li><a class="nav-link">About</a></li>
<li><a class="nav-link">Contact</a></li>
</ul>
</nav>
</header>
<div class="banner-text">
Enjoy!
<div class="banner-subtext">
We provide best quality coffee brewers, machines, filters and much more with reasonable prices and fast delivery.
</div>
</div>
<div class="banner-bg"></div>
<section class="about-section">
<h1>About</h1>
<p class="about-text">We’ve talked to hundreds of coffee lovers — from casual sippers to hardcore caffeine fanatics — and compiled their top preferences into a detailed database. From taste profiles to brewing habits, we know what makes a coffee experience truly satisfying.</p>
<p class="about-text">All you have to do is take our quick quiz — it only takes a few seconds — and our smart matching system will connect you with a few perfect brewers that suit your style, budget, and daily ritual.</p>
<p class="about-text">Whether you’re into bold pour-overs, rich espresso shots, or convenient single-cup machines, our algorithm takes the guesswork out of choosing the right setup. The perfect brew starts with the perfect brewer — and we’ll help you find it.</p>
</section>
<section class="popular-products">
<h1>Popular Products</h1>
<div class="products-grid">
<div class="product-card">
<div class="product-like"><img class="icon-heart" src="source/heart.png" alt="Like"></div>
<img class="product-image" src="source/hariov60.jpg" alt="Hario V60">
<p class="product-name">Hario V60</p>
<p class="product-description">A minimalist, Japanese-designed pour-over cone known for its control and clarity.</p>
<div class="product-footer">
<p class="product-price">$24.50 US</p>
<div class="product-buy"><img class="icon-basket" src="source/basket.png" alt="Buy"></div>
</div>
</div>
<div class="product-card">
<div class="product-like"><img class="icon-heart" src="source/heart.png" alt="Like"></div>
<img class="product-image" src="source/aeropressgo.jpg" alt="Aeropress Go">
<p class="product-name">AeroPress Go</p>
<p class="product-description">A compact, travel-friendly brewer that makes smooth, rich coffee using gentle air pressure.</p>
<div class="product-footer">
<p class="product-price">$39.95 US</p>
<div class="product-buy"><img class="icon-basket" src="source/basket.png" alt="Buy"></div>
</div>
</div>
<div class="product-card">
<div class="product-like"><img class="icon-heart" src="source/heart.png" alt="Like"></div>
<img class="product-image" src="source/chemex8cup.jpg" alt="Chemex Classic 8-Cup">
<p class="product-name">Chemex Classic 8-Cup</p>
<p class="product-description">A beautifully designed pour-over brewer that delivers clean, bright coffee.</p>
<div class="product-footer">
<p class="product-price">$49.50 US</p>
<div class="product-buy"><img class="icon-basket" src="source/basket.png" alt="Buy"></div>
</div>
</div>
<div class="product-card">
<div class="product-like"><img class="icon-heart" src="source/heart.png" alt="Like"></div>
<img class="product-image" src="source/keurig.jpg" alt="Keurig K-Supreme">
<p class="product-name">Keurig K-Supreme</p>
<p class="product-description">A high-tech single-serve brewer with app-based control in one touch.</p>
<div class="product-footer">
<p class="product-price">$199.99 US</p>
<div class="product-buy"><img class="icon-basket" src="source/basket.png" alt="Buy"></div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="footer-links">
<div class="footer-section">
<p class="footer-title">WHO WE ARE</p>
<p class="footer-link">About</p>
<p class="footer-link">Team</p>
<p class="footer-link">Work With Us</p>
</div>
<div class="footer-section">
<p class="footer-title">FOLLOW US</p>
<p class="footer-link"><a href="https://x.com/" target="_blank">Twitter</a></p>
<p class="footer-link"><a href="https://www.facebook.com/" target="_blank">Facebook</a></p>
<p class="footer-link"><a href="https://www.instagram.com/" target="_blank">Instagram</a></p>
</div>
</div>
<div class="footer-socials">
<a href="https://x.com/" target="_blank"><img class="social-icon" src="source/twitter.png" alt="Twitter Logo"></a>
<a href="https://www.facebook.com/" target="_blank"><img class="social-icon" src="source/facebook.png" alt="Facebook Logo"></a>
<a href="https://www.instagram.com/" target="_blank"><img class="social-icon" src="source/instagram.png" alt="Instagram Logo"></a>
</div>
<p class="copyright">© 2025 BREWLAB</p>
</footer>
</body>
</html>