-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
239 lines (220 loc) · 9.05 KB
/
Copy pathindex.html
File metadata and controls
239 lines (220 loc) · 9.05 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personal Portfolio</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=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav class="nav">
<div class="logo">☕ BrewCorner</div>
<ul class="navigation">
<li><a href="/">Home</a></li>
<li><a href="/">Menu</a></li>
<li><a href="/">About</a></li>
<li><a href="/">Contact</a></li>
</ul>
</nav>
<header class="header">
<div class="hero">
<h3 class="subtitle">Freshly roasted, daily</h3>
<h1>Your Perfect Cup Of Coffee <br />Starts Here</h1>
<p class="hero-description">
Handcrafted coffee to make your everyday mornings a little more
special.
</p>
<button class="btn-primary">Order now</button>
</div>
</header>
<main class="main">
<section class="story">
<div class="story-image">
<img src="./image/our-story.avif" />
</div>
<div class="story-content">
<h3 class="story-subtitle">Our story</h3>
<p class="story-description">
Since 2018, BrewCorner has been sourcing the finest coffee beans,
roasting them our own way, and bringing them straight to your cup.
</p>
<p class="story-description">
Every cup carries care, love, and years of experience behind it.
</p>
<button class="btn-primary">explore menu</button>
</div>
</section>
<section class="menu two-part">
<div class="section-heading">
<h3 class="subtitle">Our Menu</h3>
<h2 class="section-title">Popular Picks</h2>
</div>
<div class="menu-container">
<div class="menu-item">
<img src="./image/cup.png" alt="" />
<p class="menu-item__title">Espresso</p>
<p class="menu-item__description">
Bold and strong, made for true coffee lovers.
</p>
<p class="menu-item__price">$3.50</p>
</div>
<div class="menu-item">
<img src="./image/glass.png" alt="" />
<p class="menu-item__title">Cappuccino</p>
<p class="menu-item__description">
The perfect balance of espresso and milk foam
</p>
<p class="menu-item__price">$4.00</p>
</div>
<div class="menu-item">
<img src="./image/cube.png" alt="" />
<p class="menu-item__title">Cold Brew</p>
<p class="menu-item__description">
A cool, refreshing cup for a hot day.
</p>
<p class="menu-item__price">$4.50</p>
</div>
<div class="menu-item">
<img src="./image/chocolate.png" alt="" />
<p class="menu-item__title">Mocha</p>
<p class="menu-item__description">
A rich blend of chocolate and coffee
</p>
<p class="menu-item__price">$5.00</p>
</div>
</div>
</section>
<section class="different two-part">
<div class="section-heading">
<h3 class="subtitle">Why us</h3>
<h2 class="section-title">what makes us different</h2>
</div>
<div class="different-items">
<div class="different-item">
<p class="different-item__icon">🌱</p>
<p class="different-item__title">fresh beans</p>
<p class="different-item__description">
Coffee made from fresh beans, every single day.
</p>
</div>
<div class="different-item">
<p class="different-item__icon">🚚</p>
<p class="different-item__title">Fast delivery</p>
<p class="different-item__description">
Delivered within 30 minutes of ordering.
</p>
</div>
<div class="different-item">
<p class="different-item__icon">❤️</p>
<p class="different-item__title">made with love</p>
<p class="different-item__description">
Every cup is made with our care and love.
</p>
</div>
</div>
</section>
<section class="two-part worktime">
<div class="section-heading">
<h3 class="subtitle">Open Hours</h3>
<h2 class="section-title">when we're open</h2>
</div>
<table class="worktime-table">
<thead>
<th>Day</th>
<th>Hours</th>
</thead>
<tbody>
<tr>
<td>Monday - Friday</td>
<td>7:00 - 9:00 PM</td>
</tr>
<tr>
<td>Saturday</td>
<td>8:00 - 10:00 PM</td>
</tr>
<tr>
<td>Sunday</td>
<td>8:00 - 6:00 PM</td>
</tr>
<tr>
<td>Public Holidays</td>
<td>9:00 - 4:00 PM</td>
</tr>
</tbody>
</table>
</section>
<section class="location">
<div class="question-img">
<div class="opnetime">
<span class="opnetime-hour">24/7</span>
open
</div>
<div class="question">
<p class="question-title">Always open for you</p>
<p>Craving coffee at 3 AM? We've got you covered, day and night.</p>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer-container">
<div class="footer-nav">
<div class="footer-nav__heading">
<div class="logo">☕ BrewCorner</div>
<p class="footer-nav__description">
Your companion for the best moments of the day.
</p>
</div>
<nav class="footer-nav__navigation">
<p class="footer-nav__subtitle">Quick Links</p>
<ul class="footer-nav__list">
<li>Home</li>
<li>About</li>
<li>Home</li>
</ul>
</nav>
<nav class="footer-nav__contact">
<p class="footer-nav__subtitle">Contact</p>
<ul class="footer-nav__list">
<li>Dhaka, Bangladesh</li>
<li>admin@example.com</li>
<li>+880 1XXX-XXXXXX</li>
</ul>
</nav>
</div>
<div class="footer-links">
<p class="copyright">© 2026 BrewCorner. All rights reserved.</p>
<div class="social-links">
<p class="social-link">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640">
<path
d="M240 363.3L240 576L356 576L356 363.3L442.5 363.3L460.5 265.5L356 265.5L356 230.9C356 179.2 376.3 159.4 428.7 159.4C445 159.4 458.1 159.8 465.7 160.6L465.7 71.9C451.4 68 416.4 64 396.2 64C289.3 64 240 114.5 240 223.4L240 265.5L174 265.5L174 363.3L240 363.3z"
/>
</svg>
</p>
<p class="social-link">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640">
<path
d="M523.4 215.7C523.7 220.2 523.7 224.8 523.7 229.3C523.7 368 418.1 527.9 225.1 527.9C165.6 527.9 110.4 510.7 64 480.8C72.4 481.8 80.6 482.1 89.3 482.1C138.4 482.1 183.5 465.5 219.6 437.3C173.5 436.3 134.8 406.1 121.5 364.5C128 365.5 134.5 366.1 141.3 366.1C150.7 366.1 160.1 364.8 168.9 362.5C120.8 352.8 84.8 310.5 84.8 259.5L84.8 258.2C98.8 266 115 270.9 132.2 271.5C103.9 252.7 85.4 220.5 85.4 184.1C85.4 164.6 90.6 146.7 99.7 131.1C151.4 194.8 229 236.4 316.1 240.9C314.5 233.1 313.5 225 313.5 216.9C313.5 159.1 360.3 112 418.4 112C448.6 112 475.9 124.7 495.1 145.1C518.8 140.6 541.6 131.8 561.7 119.8C553.9 144.2 537.3 164.6 515.6 177.6C536.7 175.3 557.2 169.5 576 161.4C561.7 182.2 543.8 200.7 523.4 215.7z"
/>
</svg>
</p>
<p class="social-link">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640">
<path
d="M512 96L127.9 96C110.3 96 96 110.5 96 128.3L96 511.7C96 529.5 110.3 544 127.9 544L512 544C529.6 544 544 529.5 544 511.7L544 128.3C544 110.5 529.6 96 512 96zM231.4 480L165 480L165 266.2L231.5 266.2L231.5 480L231.4 480zM198.2 160C219.5 160 236.7 177.2 236.7 198.5C236.7 219.8 219.5 237 198.2 237C176.9 237 159.7 219.8 159.7 198.5C159.7 177.2 176.9 160 198.2 160zM480.3 480L413.9 480L413.9 376C413.9 351.2 413.4 319.3 379.4 319.3C344.8 319.3 339.5 346.3 339.5 374.2L339.5 480L273.1 480L273.1 266.2L336.8 266.2L336.8 295.4L337.7 295.4C346.6 278.6 368.3 260.9 400.6 260.9C467.8 260.9 480.3 305.2 480.3 362.8L480.3 480z"
/>
</svg>
</p>
</div>
</div>
</div>
</footer>
</body>
</html>