-
Notifications
You must be signed in to change notification settings - Fork 0
/
cakes.html
89 lines (57 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>cakes</title>
<link rel="shortcut icon" href="img/Screenshot_2022-09-24_194941-removebg-preview.png" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><img src=></li>
<li><h2 id="second">Whiskful Eats</h2></li>
<li><a id="one" href="home.html">HOME</a></li>
<li><a id="one" href="recipe.html">RECIPES</a></li>
<li><a id="one" href="booklet.html">BOOKLET</a></li>
<li><a id="one" href="contact.html"> CONTACT</a></li>
</ul>
</nav>
</header>
<h2 id="topic">Cakes</h2>
<br>
<br>
<div class="Main">
<div class="card">
<h3>Strawberry Cupcake</h3>
<img class="cake01" src="img/view-tray-filled-with-delicious-sweet-cupcake-desserts.jpg">
<a class="href" href="strawberrycupcake.html"><button><b>Recipe</b></button></a>
</div>
<div class="card">
<h3>Chocolate Cake</h3>
<img class="cake01" src="img/indulgent-chocolate-cheesecake-with-fresh-berry-decoration-generated-by-ai.jpg">
<a class="href" href="chocolatecake.html"><button><b>Recipe</b></button></a>
</div>
<div class="card">
<h3>Fruit Cake </h3>
<img class="cake01" src="img/whipped-cream-berry-cheesecake-slice-refreshment-generated-by-ai.jpg">
<a class="href" href="fruitcake.html"><button><b>Recipe</b></button></a>
</div>
<div class="card">
<h3>Red Velvet Cake</h3>
<img class="cake01" src="img/layered-cheesecake-with-fresh-berries-whipped-cream-chocolate-biscuit-generated-by-ai.jpg">
<a class="href" href="redvelvet.html"><button><b>Recipe</b></button></a>
</div>
</div>
<br>
<br>
<footer>
<div class="footer-container">
<p>© 2024 Whiskful Eats | [email protected]</p>
</div>
</footer>
</body>
</html>