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
67 lines (63 loc) · 2.41 KB
/
index.html
File metadata and controls
67 lines (63 loc) · 2.41 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
<!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" />
<script src="./hamburger.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<style>
</style>
</head>
<body>
<div class="grid-container">
<header>
<div class="mobile-container">
<div class="topnav">
<a href="#home" class="active"></a>
<div id="hamburger">
<a href=".">Home</a>
<a href="#img">Photo</a>
<a href="#main">Main</a>
</div>
<a href="javascript:void(0);" class="icon" onclick="hamburgerMenu()">
<i class="fa fa-bars"></i>
</a>
</div>
</div>
<p>The best cakes in town delivered to your door</p>
</header>
<nav>
<ul>
<li><a href="*">Home</a></li>
<li><a href="#">Cakes</a></li>
<li><a href="#">Ordering</a></li>
<li><a href="#">Lesson</a></li>
<li><a href="#">About</a></li>
</ul>
</nav>
<main id="main">
<h1>Welcome</h1>
<p>
Old favourites, traditional bakes and new flavours – take your pick
from our timeless collection of layered, fruit and the most indulgent
chocolate cakes. The perfect pit stop after a morning at the nearby
flower market.
</p>
</main>
<div class="img" id="img"><img src="./img/las vegas.jpg" /></div>
<section>
<img class="cake1" src="./img/2 Best-Birthday-Cake-with-milk-chocolate-buttercream-SQUARE.jpg" />
<img class="cake2" src="./img/5 Lemon-layer-cake-d2a2df0.jpeg" />
<img class="cake3" src="./img/6 image.jpeg" />
<img class="cake4" src="./img/Pound_layer_cake.jpeg" />
</section>
<footer>
<p><a href="#">About us</a></p>
<p><a href="#">Contact Us</a></p>
</footer>
</div>
</body>
</html>