-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwedding.html
71 lines (66 loc) · 2.63 KB
/
wedding.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<title>wedding cakes</title>
</head>
<body>
<section id="wed">
<div class="container">
<h1>Let's Bake</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html">About</a></li>
<li>
<select id="category-select">
<option value="" disabled selected>Categories</option>
<option value="birthday.html">Birthday Cake</option>
<option value="wedding.html">Wedding Cake</option>
<option value="custom.html">Custom Cake</option>
</select>
</li>
<li><a href="cart.html">Cart</a></li>
<li><a href="index.html">Contact</a></li>
</ul>
</nav>
</div>
<h1>WEDDING CAKES!</h1>
<div class="container">
<div class="cakes">
<img src="./images/wedding.jpeg" alt="wedding1" height="300" width="250">
<div class="text">
<p>3 tier wedding cake<i class="fa-solid fa-leaf"></i></p>
<p>₹3000</p>
<p><i class="fa-solid fa-star"></i> 4.9</p>
<button class="btn1 btn2">Add to Cart</button>
</div>
</div>
<div class="cakes">
<img src="./images/simple.jpeg" alt="Simple wedding Cake" height="300" width="250">
<div class="text">
<p>Simple wedding Cake</p>
<p>₹950</p>
<p><i class="fa-solid fa-star"></i> 4.5</p>
<button class="btn1 btn2">Add to Cart</button>
</div>
</div>
<div class="cakes">
<img src="./images/vanilla.jpeg" alt="Vanilla wedding cake" height="300" width="250">
<div class="text">
<p>Vanilla wedding cake<i class="fa-solid fa-leaf"></i></p>
<p>₹1000</p>
<p><i class="fa-solid fa-star"></i> 3.9</p>
<button class="btn1 btn2">Add to Cart</button>
</div>
</div>
<script src="script.js"></script>
<footer id="ft">
<p>© 2024 Let's Bake| All Rights Reserved.</p>
</footer>
</section>
</body>
</html>