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
123 lines (101 loc) · 5.96 KB
/
index.html
File metadata and controls
123 lines (101 loc) · 5.96 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
<!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">
<link rel="dns-prefetch" href="//fonts.googleapis.com" />
<link
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="/style.css"/>
<title>Cake webpage</title>
</head>
<body>
<div class="super-container">
<header class="header">
<div>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ9jI_ZW44evhLDNw72CRxKhmQDkV9KAryROw&usqp=CAU"alt="cake-logo"class="header-logo-img"/>
</div>
<div class="header-logo-right">
<div class="hamburger">
<span class="line"></span>
<span class="line"></span>
<span class="line"></span>
</div>
<div class="slogan">
<h1 class="slogan">The best cakes in town delivered to your door.</h1>
</div>
</div>
</header>
<div class="nav-items">
<nav>
<div class="nav-list">
<div>
<span class="navigation-item-home">Home</span>
</div>
<div>
<span class="navigation-item">Cakes</span>
</div>
<div>
<span class="navigation-item">OrderIn</span>
</div>
<div>
<span class="navigation-item">Lessons</span>
</div>
<div>
<span class="navigation-item">About</span>
</div>
</div>
</nav>
</div>
<div class="cake-feature">
<article class="welcome-container">
<h2>Welcome</h2>
<p>We specialise in creating truly bespoke cakes which our customers create in their imagination.
If you can tell us about it,we'll make it into cake.
Be it a wedding,birthday and any other celebration,let us design the perfect cake for your special day.
</p>
</article>
<article class="Big-cake-container">
<img class="big-cake-img" src="https://images.unsplash.com/photo-1584982890941-b788ae5a54df?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8MTg0fHx8ZW58MHx8fHw%3D&auto=format&fit=crop&w=600&q=60"alt="vanilla-chocolate-fruit-cake"/>
</article>
</div>
<article class="gallery-container">
<div class="gallery-image-container">
<img src="https://images.unsplash.com/photo-1602630236440-a829a1d70114?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8MjQwfHx8ZW58MHx8fHw%3D&auto=format&fit=crop&w=300&q=60"alt="fluffy-chocolate-cake"class="fluffy-chocolate-cake"/>
</div>
<div class="gallery-image-container">
<img src="https://images.unsplash.com/photo-1615735486329-c61cd40bfcc6?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8MjgyfHx8ZW58MHx8fHw%3D&auto=format&fit=crop&w=300&q=60"alt="fluffy-cake" class="="fluffy-cake"/>
</div>
<div class="gallery-image-container">
<img src="https://images.unsplash.com/photo-1474625342403-1b8a2c0f7215?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8MzQyfHx8ZW58MHx8fHw%3D&auto=format&fit=crop&w=300&q=60"alt="Chocolate-vanilla-cup-cake"class="Chocolate-vanilla-cup-cake"/>
</div>
<div class="gallery-image-container">
<img src="https://images.unsplash.com/photo-1567022405855-fc2ce6befe33?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8NDYwfHx8ZW58MHx8fHw%3D&auto=format&fit=crop&w=300&q=60"alt="ice-cream-cup-cake"class="ice-cream-cup-cake"/>
</div>
</article>
<footer class="social-media-container">
<ul>
<div class="media">
<div>
<a href="https://www.facebook.com/">Facebook</a>
</div>
<div>
<a href="https://twitter.com/">Twitter</a>
</div>
<div>
<a href="https://www.instagram.com/">Instagram</a>
</div>
</div>
</ul>
<p class="copy">copyright ©2023 fowobi.</p>
</footer>
</div>
</body>
</html>