-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
151 lines (111 loc) · 3.23 KB
/
index.html
File metadata and controls
151 lines (111 loc) · 3.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Made with love.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bakeology</title>
<link rel="stylesheet" href="css/style.css">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="hero">
<h1>Bakeology</h1>
<p>Made fresh. Made with love.</p>
<a href="#contact" class="btn">Order Now</a>
</header>
<section class="about">
<h2>About</h2>
<p>Handcrafted cakes, cupcakes, and desserts for every occasion.</p>
</section>
<!---------Fast sellers----------->
<section class="fast-sellers">
<h2>Fast Sellers</h2>
<div class="grid">
<article class="card">
<img src="images/Other/Yogurt_Cups.jpg" alt="yogurt cups">
<h3>Yogurt & Fruit Cups - Real mixed berries</h3>
<p class="price">$15.00</p>
</article>
<article class="card">
<img src="images/cakes/cheesecake.jpg" alt="cheesecake">
<h3>Multi-Flavor No-Bake Cheesecake</h3>
<p class="price">$12.99</p>
</article>
<article class="card">
<img src="images/Other/tamales.jpg" alt="Tamales">
<h3>Traditional Tamales - Beef or Chicken</h3>
<p class="price">$20.00</p>
</article>
<article class="card">
<img src="images/Other/chocolate_dubai.jpg" alt="Dubai Chocolate">
<h3>Rich & Flaky Dubai Chocolate - Pistachio</h3>
<p class="price">$30.00</p>
</article>
</div>
</section>
<!---------Menu List----------->
<section class="menu">
<h2>Menu</h2>
<div class="grid">
<a href="#cookies" class="btn">Cookies</a>
<a href="#cakes" class="btn">Cakes</a>
<a href="#pastries" class="btn">Pastries</a>
<a href="#chocolate" class="btn">Chocolate</a>
<a href="#other" class="btn">Other</a>
</div>
</section>
<!---------Interactive Menu - Press a button and it takes you there----------->
<section id="pastries">
<h2>Pastries</h2>
<div class="grid">
<article class="card"></article>
</div>
</section>
<section id="chocolate">
<h2>Chocolate</h2>
<div class="grid">
<article class="card"></article>
</div>
</section>
<section id="cookies">
<h2>Cookies</h2>
<div class="grid">
<article class="card"></article>
</div>
</section>
<section id="cakes" class="menu-section">
<h2>Cakes</h2>
<div class="grid">
<article class="card"></article>
</div>
</section>
<section id="other">
<h2>Other</h2>
<div class="grid">
<article class="card"></article>
</div>
</section>
<!----------Gallery & Past Events--------->
<section class="gallery">
<h2>Gallery</h2>
<div class="grid">
<img src="images/cakes/cheesecake.jpg" alt="cheesecake">
<img src="images/Other/tamales.jpg" alt="tamales">
<img src="images/cakes/cake_fudge.jpg" alt="fudge cake">
</div>
</section>
<!---------Contacts list----------->
<section id="contact" class="contact">
<h2>Contact</h2>
<p>Email: ____Angie@gmail.com</p>
<p>Instagram: ____@Bakeology</p>
<p>Facebook: ____Bakeology</p>
</section>
<a href=""#contact" class="sticky-order">Order Now </a>
<footer>
<p>© 2026 Bakeology Bakery</p>
</footer>
</body>
</html>