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
86 lines (63 loc) · 2.52 KB
/
index.html
File metadata and controls
86 lines (63 loc) · 2.52 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
<!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="icon" href="cup-cake-icon.png" type="image/icon type">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Responsive Cake webpage</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">
<img src="/image/logo-blue.png" alt="logo">
</div>
<!-- navbar -->
<nav>
<ul>
<input type='checkbox' id='check' />
<div class="menu">
<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>
</div>
<label for="check" class="open-menu"><i class="fa-solid fa-bars"></i></label>
</ul>
</nav>
<h1>The best cakes in town delivered to your door</h1>
</header>
<main>
<section class="navigation">
<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>
</section>
<section class="container">
<h1>Welcome</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Earum nemo quae dolores doloremque officiis voluptatem tenetur impedit, reiciendis inventore est eligendi perferendis, eum harum itaque at natus blanditiis nam velit!</p>
</section>
<section class="main-pic">
</section>
<section class="collage">
<img src="/image/1.jpg" alt="">
<img src="/image/2.jpg" alt="">
<img src="/image/3.jpg" alt="">
<img src="/image/4.jpg" alt="">
</section>
</main>
<!-- footer -->
<footer>
<div class="footer-text">
<p>by <a href="https://github.com/" target="_blank">HADI A.P</a></p>
</div>
</footer>
</body>
</html>