forked from CodeYourFuture/HTML-CSS-Coursework-Week3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (59 loc) · 2.18 KB
/
style.css
File metadata and controls
73 lines (59 loc) · 2.18 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
<!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>
<!-- Add a link to your css file here -->
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- section for header -->
<section class="header">
<div class="logo">
<img src="https://www.mockofun.com/wp-content/uploads/2020/01/cake-logo-free-276.jpg" alt="logo image">
</div>
<div class="content">
<p>The best cakes in town delivered to your door</p>
</div>
</section>
<!-- section for navbar -->
<section class="navbar">
<div class="list">
<ul>
<li><a href="#">HOME</a></li>
<li>CAKES</li>
<li>ORDERIN</li>
<li>LESSONS</li>
<li>ABOUT</li>
</ul>
</div>
</section>
<!-- section for banner -->
<section class="banner">
<div class="bannerImg">
<img src="https://media.istockphoto.com/id/918219026/photo/birthday-cake-with-pink-candles.jpg?s=612x612&w=0&k=20&c=ovZfOTNrpyYZJ-VsHSaGB7pdDC1V5C4hzsd8X8DXTe8=" alt="cake banner"/>
</div>
<div class="bannerwelcome">
<h1>Welcome</h1>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Molestiae accusamus explicabo et nemo molestias. Consequuntur dolor architecto ullam magni veniam velit molestiae, eligendi consequatur autem quaerat libero dicta. Eos, nesciunt.</p>
</div>
</section>
<!-- section for Feature -->
<section class="feature">
<div class="featureItem item1"></div>
<div class="featureItem item2"></div>
<div class="featureItem item3"></div>
<div class="featureItem item4"></div>
</section>
<!-- section for footer -->
<footer>
<div class="icons">
</div>
<div class="years">
<p> © 2023 Cake Business, Inc.</p>
</div>
</footer>
</body>
</html>