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
126 lines (125 loc) · 4.2 KB
/
index.html
File metadata and controls
126 lines (125 loc) · 4.2 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
<!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>
<div class="header-content">
<div class="logo-img">
<img
src="https://www.pngitem.com/pimgs/m/535-5356719_vegan-bakery-logo-designs-hd-png-download.png"
alt="Cake logo"
/>
</div>
<div class="hamburger">
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
<div class="header-text">
<span>The best cakes in town delivered to your door</span>
</div>
</div>
</header>
<main>
<nav class="nav">
<ul class="menu">
<li class="items">
<a href="/index.html" class="links">Home</a>
</li>
<li class="items">
<a href="#" class="links">Cakes</a>
</li>
<li class="items">
<a href="#" class="links">Orderin</a>
</li>
<li class="items">
<a href="#" class="links">Lessons</a>
</li>
<li class="items">
<a href="#" class="links">About</a>
</li>
</ul>
</nav>
<section class="hero">
<h1>Welcome</h1>
<div class="main-text">
<p>
We are very experienced in making and decorating our vegan cakes.
All of our cakes are vegan, so they are all 100% free-from dairy and
eggs. We use a range of plant-based ingredients in our mixes and
icings. Also all of our cakes can be made gluten free if requested.
</p>
</div>
<figure class="fab-img">
<img
class="main-img"
src="https://thebananadiaries.com/wp-content/uploads/2020/07/homemade-vegan-wedding-cake-recipe_5088-1333x2000.jpg"
alt="Fab Image"
/>
</figure>
</section>
<section class="cakes">
<div class="cake-item">
<img
class="cake-img"
src="https://biancazapatka.com/wp-content/uploads/2019/06/best-vegan-chocolate-cake-recipe-cherry-frosting-ganache.jpg
"
alt="Chocolate Cake Image"
/>
</div>
<div class="cake-item">
<img
class="cake-img"
src="https://biancazapatka.com/wp-content/uploads/2019/06/vegan-vanilla-cake-recipe-buttercream-frosting-torte-layer-naked-cake-foodstyling.jpg/img/prod2.jpg"
alt="Cherry Cake Image"
/>
</div>
<div class="cake-item">
<img
class="cake-img"
src="https://jessicainthekitchen.com/wp-content/uploads/2020/12/Vegan-Vanilla-Cake-12.jpg"
alt="Vanila Cake Image"
/>
</div>
<div class="cake-item">
<img
class="cake-img"
src="https://domesticgothess.com/wp-content/uploads/2018/07/vegan-banana-cake-with-chocolate-frosting.jpg"
alt="Banana Cake Image"
/>
</div>
</section>
</main>
<footer>
<h3>For more information join us on</h3>
<ul>
<li>
<a href="https://facebook.com">
<img
src="https://th.bing.com/th/id/R.dabbf52a8b1dfa865bb752ff46a5d61f?rik=lfoTk1OXHhJL6g&riu=http%3a%2f%2f3.bp.blogspot.com%2f-bmjsXhRZMUM%2fTi1Zp2K8SNI%2fAAAAAAAAAgM%2fXibusKQPf7g%2fs1600%2ffacebook_logo.jpg&ehk=C6myYMpwdHQxvjjY34WChIzo7%2fAquhNfPiXK7kDJ0ww%3d&risl=&pid=ImgRaw&r=0"
alt="Facebook Logo"
/></a>
</li>
<li>
<a href="https://instagram.com"
><img
src="https://th.bing.com/th/id/R.bd5047bd44f35ee3cda2f5131c3d03f1?rik=14jsLIcT1jIO4g&pid=ImgRaw&r=0"
alt="Instagram Logo"
/>
</a>
</li>
</ul>
<p>Leila Farsani</p>
</footer>
</body>
</html>