-
Notifications
You must be signed in to change notification settings - Fork 0
/
cakes.html
246 lines (239 loc) · 8.75 KB
/
cakes.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
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
240
241
242
243
244
245
246
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Grandma's Sweet Setup</title>
<!-- fontawesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
/>
<!-- Bootstrap css -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
/>
<!-- custom css -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-----------------------------------------
Header with Navbar and Banner-BGImage
------------------------------------------>
<header>
<nav class="navbar navbar-expand-lg px-5 bg-danger-subtle bg-opacity-75">
<div class="container-fluid">
<a href="index.html" class="navbar-brand">
<img src="img/sweet-logo.png" alt="logo icon" />
</a>
<button
type="button"
class="navbar-toggler"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="toggler-icon">
<i class="fa-solid fa-bars"></i>
</span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav text-capitalize mx-auto">
<li class="nav-item">
<a href="index.html" class="nav-link active" aria-current="page"
>home</a
>
</li>
<li class="nav-item">
<a href="/about.html" class="nav-link">about</a>
</li>
<li class="nav-item">
<a href="store.html" class="nav-link">store</a>
</li>
<li class="nav-item">
<a href="services.html" class="nav-link">services</a>
</li>
<li class="nav-item">
<a href="cakes.html" class="nav-link">order</a>
</li>
</ul>
<!-- nav-info-items -->
<div class="nav-info-items d-none d-lg-flex me-5">
<!-- single-info-1 -->
<div
class="nav-info d-flex align-items-center justify-content-center mx-lg-5"
>
<span class="info-icon mx-lg-2"
><i class="fa-solid fa-phone"></i
></span>
<p class="mb-0">+123 456 7890</p>
</div>
<!-- single-info-2 -->
<div
id="cart-info"
class="nav-info align-items-center cart-info d-flex justify-content-between mx-lg-5"
>
<span class="cart-info-icon me-lg-3"
><i class="fa-solid fa-shopping-cart"></i>
</span>
<p class="mb-0 text-capitalize">
<span id="item-count">2</span>
items - $
<span class="item-total">10.49</span>
</p>
</div>
<!-- end of single-info-2 -->
</div>
<!--end of nav-info-items -->
</div>
<!-- collapse -->
</div>
<!-- container-fluid -->
</nav>
<!-- end of nav -->
<!-----------------
Banner BG-Image
------------------>
<div class="container-fluid">
<div
class="row banner-bgimage justify-content-center align-items-center"
>
<div class="col-10 mx-auto text-center banner">
<h1 class="text-capitalize mt-4">
welcome to
<strong class="banner-title">grandma's</strong>
</h1>
</div>
<!-- col-10 -->
</div>
<!-- row -->
</div>
<!-- container-fluid -->
<!-- end of banner -->
</header>
<!--------------------
Order Section
---------------------->
<section id="cakes" class="cakes py-5">
<div class="container">
<!-- order-title -->
<div class="order-title text-center">
<h1 class="text-capitalize">
order <strong class="banner-title">cake</strong>
</h1>
</div>
<div class="row my-5">
<!-- single cake - 1 -->
<div class="col-11 mx-auto col-md-4 text-center">
<h4 class="text-uppercase my-3">birthday cake</h4>
<div class="text-muted text-capitalize">
<p class="my-3">birthday cake with a name</p>
<p class="my-3">custom ingredients</p>
<p class="my-3">custom design</p>
<p class="my-3">custom size</p>
<button class="btn btn-outline-dark text-capitalize mb-3">
order now
</button>
<p class="text-lower-case mb-4">starting at $8</p>
<img src="img/order/trans-cake.png" alt="" class="img-fluid" />
</div>
</div>
<!-- /col-11 -->
<!-- end of single cake-1-->
<!-- single cake - 2 -->
<div class="col-11 mx-auto col-md-4 text-center">
<h3 class="text-uppercase my-3">custom cake</h3>
<div class="text-muted text-capitalize">
<p class="my-3">birthday cake with a name</p>
<p class="my-3">custom ingredients</p>
<p class="my-3">custom design</p>
<p class="my-3">custom size</p>
<button class="btn btn-outline-dark text-capitalize mb-3">
order now
</button>
<p class="text-lower-case mb-4">starting at $5</p>
<img src="img/order/trans-custom.png" alt="" class="img-fluid" />
</div>
</div>
<!-- /col-11 -->
<!-- end of single cake-2-->
<!-- single cake - 3 -->
<div class="col-11 mx-auto col-md-4 text-center">
<h3 class="text-uppercase my-3">Wedding cake</h3>
<div class="text-muted text-capitalize">
<p class="my-3">wedding cake with a name</p>
<p class="my-3">custom ingredients</p>
<p class="my-3">custom design</p>
<p class="my-3">custom size</p>
<button class="btn btn-outline-dark text-capitalize mb-3">
order now
</button>
<p class="text-lower-case mb-4">starting at $15</p>
<img src="img/order/trans-wedding.png" alt="" class="img-fluid" />
</div>
</div>
<!-- /col-11 -->
<!-- end of single cake-3-->
</div>
<!-- /row -->
</div>
</section>
<!-- End of order section -->
<!--------------------
Footer
---------------------->
<footer class="container-fluid">
<div class="row text-center">
<div class="col-md-6 bg-black py-5 mx-auto text-center">
<h1 class="text-white text-capitalize">
welcome to <strong class="banner-title">grandma's</strong>
</h1>
<!-- footer-icons -->
<div class="footer-icons mt-3 d-flex justify-content-around fs-2">
<a href="#">
<i class="fa-brands fa-square-facebook text-white"></i>
</a>
<a href="#">
<i class="fa-brands fa-square-twitter text-white"></i>
</a>
<a href="#">
<i class="fa-brands fa-square-instagram text-white"></i>
</a>
<a href="#">
<i class="fa-brands fa-square-google-plus text-white"></i>
</a>
</div>
</div>
<div class="col-md-6 bg-dark-subtle py-5 text-center">
<h3 class="mb-5 text-capitalize">contact</h3>
<p class="contact-icons d-flex flex-wrap ms-5">
<span class="me-4">
<i class="fa-solid fa-map"></i>
</span>
<span class="text-capitalize w-50">
123 main street, san diego, CA 90101</span
>
</p>
<p class="d-flex flex-wrap ms-5 text-center">
<span class="me-4">
<i class="fa-solid fa-envelope-square"></i>
</span>
<span>[email protected]</span>
</p>
<p class="d-flex flex-wrap ms-5 text-center">
<span class="me-4">
<i class="fa-solid fa-phone"></i>
</span>
<span>+123 456 7890</span>
</p>
</div>
</div>
</footer>
<!-- END OF FOOTER -->
<!-- Bootstrap Js Files -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>