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
62 lines (50 loc) · 2.45 KB
/
index.html
File metadata and controls
62 lines (50 loc) · 2.45 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
<!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>
<header id="header">
<img id="header-img" width="100" height="100"
src="https://th.bing.com/th/id/OIP._-JDWyoFto9gcyq01NTVkgHaHa?pid=Api&rs=1"
alt="Logo Image">
<nav id="contact">
<h1>The Cake Shop</h1>
</div>
</nav>
</header>
<nav id="nav-bar">
<ul>
<li><a class="nav-links" href="Home">Home</a></li>
<li><a class="nav-links" href="Cakes">Cakes</a></li>
<li><a class="nav-links" href="Ordering">Ordering</a></li>
<li><a class="nav-links" href="Lessons">Lessons</a></li>
<li><a class="nav-links" href="About">About</a></li>
</nav>
<section id="introduction">
<aside>
<h1>Welcome</h1>
<p>LOCKDOWN UPDATE! WE'RE STILL BAKING :)</p>
<p>Our hand-made sponge cakes are perfect no matter what your age!</p>
<p>We have a great range to choose from and lots of ways to make personalised birthday cakes including candles, balloons, cake toppers and more!</p>
</aside>
<section class="carousel-container">
<img class="main-img" src="https://www.halfbakedharvest.com/wp-content/uploads/2018/08/Better-Together-Chocolate-Vanilla-Birthday-Cake-1.jpg" alt="">
<div class="slider">
<img class="carousel-img" src="https://i.pinimg.com/736x/ec/bc/df/ecbcdfc782f4352f5d6892a426c315a4.jpg" alt="cake 1" width="20%">
<img class="carousel-img" src="https://www.recipetineats.com/wp-content/uploads/2018/12/Strawberry-Cheesecake_8.jpg" alt="cake 2" width="20%">
<img class="carousel-img" src="https://www.imperialsugar.com/sites/default/files/recipe/Oreo-Cheesecake-imperial.jpg" alt="cake 3" width="20%">
<img class="carousel-img" src="https://campbellscatering.co.uk/wp-content/uploads/2019/07/IMG_0166.jpg" alt="cake 4" width="20%">
</div>
</section>
</section>
<div class="main-footer">
<h3>Delivery</h3>
<p>We Offer Free Deliveries With A 3 Mile Radius</p>
</div>
</body>
</html>