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
138 lines (117 loc) · 4.99 KB
/
index.html
File metadata and controls
138 lines (117 loc) · 4.99 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
127
128
129
130
131
132
133
134
135
136
137
138
<!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>Cake.Co</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="container">
<header class="header">
<nav class="mobile-navbar">
<ul class="nav-menu">
<li class="nav-item">
<a href="#" class="nav-link">HOME</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">CAKES</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">ORDERIN</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">LESSONS</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">ABOUT</a>
</li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
<div class="header-img">
<img src="./pink-capcake.png.webp" alt="pink-capcake"></div>
<div class="header-text">
<h2>The best cakes in town delivered to your door </h2></div>
</header>
<!---- navbar ---->
<nav class="desktop-navbar">
<ul class="desktop-nav-menu">
<li class="desktop-nav-item">
<a href="#" class="desktop-nav-link">HOME</a>
</li>
<li class="desktop-nav-item">
<a href="#" class="desktop-nav-link">CAKES</a>
</li>
<li class="desktop-nav-item">
<a href="#" class="desktop-nav-link">ORDERIN</a>
</li>
<li class="desktop-nav-item">
<a href="#" class="desktop-nav-link">LESSONS</a>
</li>
<li class="desktop-nav-item">
<a href="#" class="desktop-nav-link">ABOUT</a>
</li>
</ul>
</nav>
<!-- main -->
<main class="homepage-main">
<section class="hero">
<div class="hero-content">
<h1>Welcome</h1>
<p>We work with you to produce the perfect unique cake for anything from Christenings to Retirement, Valentine's Day to Hallowe'en, Engagement to Weddings. You get the picture!
<br>
<br>
Our cakes are suitable for vegetarians and we also bake to our own recipe gluten/wheat & dairy free cakes. All our cakes are baked with traditional ingredients (i.e. flour, sugar, fresh eggs & vegetable margarine just as you would use if baking at home) in our own on-site bakery. You will get that homemade taste & flavour from our cakes.</p>
</div>
<div class="hero-img">
<img src="./white-wedding-cake.jpeg" alt="Strawberry cake">
</div>
</section>
<!-- products -->
<section class="products" id="cakes">
<div class="product-img">
<img class="img-box img1" src="./birthday-cake.jpeg" alt="birthday-cake">
<h4 class="cake-titles">Birthday-cake</h4>
</div>
<div class="product-img">
<img class="img-box img2" src="./chocholate-capcake.jpeg" alt="chocholate-capcake">
<h4 class="cake-titles">Chocholate-capcake</h4>
</div>
<div class="product-img">
<img class="img-box img3" src="./fruit-cake.jpeg" alt="fruit-cake">
<h4 class="cake-titles">Fruit-cake</h4>
</div>
<div class="product-img">
<a href="">
<img class="img-box img4" src="./capcake.jpeg" alt="capcake">
<h4 class="cake-titles">Capcake</h4>
</a>
</div>
</section>
</main>
<!-- footer -->
<footer class="footer">
<ul class="footer-li">
<li class="footer-li-item">
<a href=""><i class="fa fa-facebook"></i> Facebook</a>
</li>
<li class="footer-li-item">
<a href=""><i class="fa fa-instagram"> Instagram</i></a>
</li>
<li class="footer-li-item">
<a href=""><i class="fa fa-twitter"> Twitter</i></a>
</li>
</ul>
<p class="copyright">© Cake Co</p>
</footer>
</div>
</body>
</html>