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
65 lines (58 loc) · 2.61 KB
/
Copy pathindex.html
File metadata and controls
65 lines (58 loc) · 2.61 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
<!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=Edu+QLD+Beginner:wght@400;700&display=swap" rel="stylesheet">
<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=Edu+QLD+Beginner&display=swap" rel="stylesheet">
<!-- Add a link to your css file here -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Add your markup here -->
<header class="header">
<img src="./design/checolate-cake .jpg" alt="" width="120px">
<div class="header-info">
<div class="ham1">
<input class="menu-btn" type="checkbox" id="menu-btn" />
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
</div>
<h1>The best cake in town deliverd to your door</h1>
</div>
</header>
<nav>
<ul class="menu">
<li><a href="#">Home</a></li>
<li><a href="#">Cake</a></li>
<li><a href="#">OrderIn</a></li>
<li><a href="#">Lessons</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
<main>
<article>
<h1>Welcome</h1>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Natus sit perspiciatis, asperiores consequuntur iure inventore nesciunt sequi dolorem esse possimus voluptate necessitatibus, enim tenetur totam sunt deleniti nam temporibus suscipit.</p>
</article>
<img src="./design/cupcakes-with-sprinkles.jpg" alt="" width="450px">
</main>
<section class="content">
<img src="./design/strawberry-cake-on-white-surface.jpg" alt="" width="240px" height="235px">
<img src="./design/Chocolate Cake.jpg" alt="" width="240px" height="235px">
<img src="./design/American Heritage Chocolate.jpg" alt="" width="240px" height="235px">
<img src="./design/alexandra-khudyntseva-hXqbSgOPjSI-unsplash.jpg" alt="" width="240px" height="235px">
</section>
<footer>
<div class="footer1"></div>
<div class="footer2"></div>
<div class="footer3"></div>
<div class="footer4"></div>
</footer>
</body>
</html>