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
95 lines (81 loc) · 3.28 KB
/
index.html
File metadata and controls
95 lines (81 loc) · 3.28 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
<!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">
<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=Caveat&family=Inconsolata&family=Odibee+Sans&family=Open+Sans:wght@500&family=Roboto:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<!-- Add your markup here -->
<header class="header-container">
<div class="logo">
<img src="/img/cupcakelogo.jpeg" alt="cupcake logo" width="100%">
</div>
<div class="nav-container">
<nav role="navigation">
<div id="menuToggle">
<input type="checkbox"/>
<span></span>
<span></span>
<span></span>
<ul id="menu">
<a href="#">
<li>HOME</li>
</a>
<a href="#">
<li>CAKES</li>
</a>
<a href="#">
<li>ORDERIN</li>
</a>
<a href="#">
<li>LESSONS</li>
</a>
<a href="#">
<li>ABOUT</li>
</a>
</ul>
</div>
</nav>
</div>
<div class="main-header">
<h1>The best cakes in town delivered to your door</h1>
</div>
</header>
<main class="main-container">
<div class="hero">
<h2>Welcome</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
<div>
<img class= "cake1" src="/img/1.jpeg" alt="creative cake making">
</div>
</main>
<section class="img-grid">
<div>
<img class= "cake" src="/img/2.jpeg" alt="cake image">
</div>
<div>
<img class= "cake" src="/img/3.jpeg" alt="cake image">
</div>
<div>
<img class= "cake" src="/img/4.jpeg" alt="cake image">
</div>
<div>
<img class= "cake" src="/img/5.jpeg" alt="cake image">
</div>
</section>
<footer class="footer-container">
<p>Get In Touch</p>
<a href="https://www.whatsapp.com/">WhatsApp</a>
<br>
<a href="https://www.instagram.com/">Instagram</a>
</footer>
</body>
</html>