This repository was archived by the owner on Oct 26, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (58 loc) · 2.05 KB
/
index.html
File metadata and controls
62 lines (58 loc) · 2.05 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link
href="https://fonts.googleapis.com/css?family=Pacifico&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css">
<title>Charlie and the Cake Factory.</title>
</head>
<body>
<header id="header">
<div class="container">
<img id="logo" src="https://i.postimg.cc/Zq6Jqk9D/2a6c1858-0fe8-48a7-82fe-1976833b8691-200x200.png" alt="">
<button id="contact-btn">Contact</button>
</div>
<nav id="cakes-menu">
<ul>
<li><a class="nav-link" href="#">Home</a> </li>
<li><a class="nav-link" href="#">Cakes</a></li>
<li><a class="nav-link" href="#">Ordering</a></li>
<li><a class="nav-link" href="#">Lessons</a></li>
<li><a class="nav-link" href="#">About</a></li>
</ul>
</nav>
</header>
<div id="tagline">
<h1>Let Them Eat Cake</h1>
<h3>Feeding the cake deprived since 2020</h3>
</div>
<div>
<img id="mainImg" src="./images/Cakes/cupcakes.jpg" alt="delicious cup cake">
</div>
<p>Just a small sample of our bakes:</p>
<div id="cake-images-container">
<div class="examples">
<img src="./images/Cakes/cake-with-blackberries.jpg" alt="">
</div>
<div class="examples">
<img src="./images/Cakes/cake-with-macarons.jpg" alt="">
</div>
<div class="examples">
<img src="./images/Cakes/not-technically-a-cake.jpg" alt="">
</div>
<div class="examples">
<img src="./images/Cakes/wedding-cake.jpg" alt="">
</div>
</div>
<footer>
<ul>
<li><a class="footer-link" href="#">Sitemap</a></li>
<li><a class="footer-link" href="#">Contact</a></li>
<li><a class="footer-link" href="#">Delivery</a></li>
</ul>
</footer>
</body>
</html>