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
76 lines (63 loc) · 2.69 KB
/
index.html
File metadata and controls
76 lines (63 loc) · 2.69 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
<!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="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<!-- Container -->
<header class="header">
<!-- Header -->
<div class="hearder-content">
<img class="logo" src="img/logo.jpg" alt="logo">
<h2 class="best">The Best cakes in town delivered to your door</h2>
<div class="nav-container">
<nav class="navbar">
<ul class="nav-menu">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
<div class="hamburger">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</div>
</nav>
</div>
</div>
</header><!-- End of Header -->
<main class="main_container">
<!-- Main Container -->
<artcile class="welcome">
<div class="cool">
<h1>Welcome</h1>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Numquam soluta qui consequuntur debitis deserunt animi,
ducimus inventore, laboriosam ab dolorem doloribus!
</p>
</div>
<img class="lemon_cake" src="img/lemon_cake.jpg" alt="cake">
</artcile>
<article class="photos_container">
<img class="firstbday cake" src="img/firstbday_cake.jpg" alt="photo_2">
<img class="triangle cake" src="img/triangle_cake.jpg" alt="photo_3">
<img class="chocolate cake" src="img/chocolate_cake.jpg" alt="photo_4">
<img class="cream cake" src="img/cream_cake.jpg" alt="photo_5">
</article>
</main><!-- End of Main Container -->
<footer class="footer">
<!-- Footer -->
<h4>Get in touch</h4>
<p>Email: <b>[email protected]</b></p>
<p>Phone: +27 623 311 589</p>
<h5>Copyright ©2022, <b>Patou Mabando</b> Trainee at CYF ZA2</h5>
</footer><!-- End Footer -->
</div><!-- End of Container -->
</body>
</html>