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
99 lines (94 loc) · 4.34 KB
/
index.html
File metadata and controls
99 lines (94 loc) · 4.34 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
<!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>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Barlow:wght@100;200&family=Open+Sans:wght@300&family=Quicksand:wght@300&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
<!-- Add a link to your css file here -->
</head>
<body>
<!-- Add your markup here -->
<header>
<div class="top-area">
<div class="logo">
<img src="https://limnosbakers.co.za/wp-content/uploads/2021/11/Small-Cakes-%E2%80%93-Black-Forrest_Q4T6750-300x300.jpg"
alt="logo-cake">
</div>
<div class="text-content">
<div class="btn-toggle">
<img src="https://cdn4.iconfinder.com/data/icons/web-design-device-solid-style-set-2/91/Web_-_Design_-_Device_81-512.png"
alt="btn toggle-image">
</div>
<p class="text">The best cakes in Town delivered to your door</p>
</div>
</div>
<nav class="navbar">
<ul>
<li><a href="#">HOME</a></li>
<li><a href="#">CAKES</a></li>
<li><a href="#">ORDERIN</a></li>
<li><a href="#">LESSONS</a></li>
<li><a href="#">ABOUT</a></li>
</ul>
</nav>
</header>
<!------------------------------main HTML---------------->
<main>
<article class="main-article">
<div class="welcome">
<img src="https://images.unsplash.com/photo-1588195538326-c5b1e9f80a1b?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8Mnx8fGVufDB8fHx8&auto=format&fit=crop&w=500&q=60" alt="cake-photo">
</div>
<div class="welcome-text">
<h2>welcome</h2>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Accusamus distinctio cupiditate cum
asperiores et fugiat odio ut quae maiores tempore atque iure perspiciatis, iste sit, explicabo non
sed vel esse.</p>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Accusamus distinctio cupiditate cum
asperiores et fugiat odio ut quae maiores tempore atque iure perspiciatis, iste sit, explicabo non
sed vel esse.</p>
</div>
</article>
<div class="second-art">
<figure>
<img src="https://images.unsplash.com/photo-1562777717-dc6984f65a63?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8MTR8fHxlbnwwfHx8fA%3D%3D&auto=format&fit=crop&w=500&q=60" alt="cake-photo1">
</figure>
<figure>
<img src="https://images.unsplash.com/photo-1602351447937-745cb720612f?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8OHx8fGVufDB8fHx8&auto=format&fit=crop&w=500&q=60"
alt="cake-photo2">
</figure>
<figure>
<img src="https://images.unsplash.com/photo-1622896784083-cc051313dbab?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8MTh8fHxlbnwwfHx8fA%3D%3D&auto=format&fit=crop&w=500&q=60"
alt="cake-photo3">
</figure>
<figure>
<img src="https://images.unsplash.com/photo-1571115177098-24ec42ed204d?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxleHBsb3JlLWZlZWR8M3x8fGVufDB8fHx8&auto=format&fit=crop&w=500&q=60"
alt="cake-photo4">
</figure>
</div>
</main>
<!-----------------------------------footer---------------------->
<footer class="footer">
<div class="footer-left">
<ul>
<li>blog</li>
<li>Products</li>
<li>contact</li>
</ul>
</div>
<div class="socio-left">
<ul class="socio-links">
<li class="twitter">Twitter</li>
<li class="facebook">Facebook</li>
<li class="LinkedIn">LinkedIn</li>
</ul>
</div>
</footer>
</body>
</html>