forked from CodeYourFuture/HTML-CSS-Coursework-Week3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (91 loc) · 3.15 KB
/
index.html
File metadata and controls
107 lines (91 loc) · 3.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Responsive Cake webpage</title>
<!-- Add a link to your css file here -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Add your markup here -->
<header class="header">
<div class="wrapper2">
<div class="menu2">
<ul>
<li><a href="#">Gallery</a></li>
<li><a href="#">Order</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
</header>
<main class="wrapper">
<div class="content">
<h1>Welcome</h1>
<h1>Love at First Bite</h1>
<h2> <em>The best cakes in town delivered to your door</em></h2>
<h2>OUR COLLECTION</h2>
</div>
<div class="container">
<div class="item">
<h3>French cake</h3>
<p>French cake, also known as "gateau," is a delectable culinary
delight renowned for its intricate designs, rich flavors, and
delicate textures. From classic pastries like croquembouche and
tarte Tatin to indulgent creations like the decadent opera cake,
French cakes showcase the artistry and culinary expertise that
France is famous for.
</p>
</div>
<img class="icon" src="images/pexels-felicity-tai-7966522.jpg">
</span>
<div class="item">
<h3>Italian cake</h3>
<p>Italian cake, also known as "torta," is renowned for its decadent
flavors and rich textures, often incorporating ingredients like creamy
mascarpone, fragrant citrus, and velvety chocolate. From classic
tiramisu to luscious ricotta-filled cannoli, Italian cakes showcase
the country's passion for indulgent and delightful desserts.</p>
</div>
<img class="icon" src="images/pranjall-kumar-lRAApjOIaFs-unsplash.jpg">
</img>
<div class="item" >
<h3>Classic cake</h3>
<p>
Classic cake is a timeless dessert loved by people of all ages, featuring
a tender and moist texture paired with a delectable combination of flavors.
Its traditional appeal and versatile nature make it a delightful treat for
any occasion.
</p>
</div>
<img class="icon" src="images/slashio-photography-XxWxPGXwDU0-unsplash.jpg">
</img>
<button class="button">Order now</button>
</div>
</main>
<footer class="footer">
<div class="mainfoot">
<div class="wix">
<p>
© 2023 by Mickey Haile.</p>
</div>
<div class="call">
<p>Call</p>>
<p>123-123-1234</p>
</div>
<div class="follow">
<p>Follow</p>
<div class="footer3">
<ul>
<li><a href="#">twitter</a></li>
<li><a href="#">facebook</a></li>
<li><a href="#">instagram</a></li>
</ul>
</div>
</div>
</div>
</footer>
</body>
</html>