-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
48 lines (45 loc) · 1.5 KB
/
menu.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sweet Bakers</title>
</head>
<body>
<header>
<h1>Sweet Bakers</h1>
<a href="index.html">HOME</a>
<a href="#">MENU</a>
<a href="about.html">ABOUT</a>
<a href="contact.html">CONTACT</a>
</header>
<br>
<section id="menu">
<h2>Our Menu 📃</h2>
<hr>
<div class="menu-item">
<h3>Cupcakes 🥧</h3>
<img src="images/cupcakes.jpg" alt="CupCakes" height="300" width="320">
</div>
<div class="menu-item">
<h3>Cakes 🎂</h3>
<img src="images/cakes.jpg" alt="Cakes" height="300" width="350">
</div>
<div class="menu-item">
<h3>Cookies 🍪</h3>
<img src="images/cookies.jpg" alt="Cookies" height="300" width="320">
</div>
<div class="menu-item">
<h3>Pasteries 🍰</h3>
<img src="images/pasteries.jpg" alt="Pasteries" height="300" width="320">
</div>
<div class="menu-item">
<h3>Ice-Cream 🍨</h3>
<img src="images/Ice-cream.jpg" alt="Ice-Cream" height="300" width="320">
</div>
</section>
<footer style="color: #fff; background-color: black; text-align: center; margin: 200px; padding: 2px 3px;">
<p>© 2024 Sweet Bakers. All rights reserved.</p>
</footer>
</body>
</html>