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
111 lines (105 loc) · 4.53 KB
/
index.html
File metadata and controls
111 lines (105 loc) · 4.53 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!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">
</head>
<body>
<header class="header">
<div class="logo-div">
<img class="logo" src="http://www.logocontest.net/48hourslogo_data/2016/11/08/55577_1478543880.jpg"
alt="Logo Image">
</div>
<div class="contact">
<h3>Contact us!</h3>
<p>xx Road Name </p>
<p>City</p>
<p>Country</p>
<p>Phone number</p>
</div>
</header>
<nav class="navigation">
<ul class="links">
<li>Home</li>
<li>Cakes</li>
<li>Ordering</li>
<li>Lessons</li>
<li>About</li>
</ul>
</nav>
<section class="introduction">
<aside>
<h1>Welcome to our website!</h1>
<p>We bake amazing cakes on order and deliver them to your home.</p>
<p>Look at some of our specialties below!</p>
</aside>
<div class="carousel">
<div class="slideshow-container" aria-label="Gallery">
<div class="mySlides fade">
<img class="carousel-img" src="https://www.seriouseats.com/images/2017/04/20170412-vanilla-layer-cake-vicky-wasik-1.jpg">
</div>
<div class="mySlides fade">
<img class="carousel-img" src="https://cdn.vox-cdn.com/thumbor/d51Nn70kszKfahR9x2oVnqzCv74=/0x0:6000x4145/920x613/filters:focal(2520x1593:3480x2553):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/66499915/shutterstock_1192482610.0.jpg">
</div>
<div class="mySlides fade">
<img class="carousel-img" src="https://www.dvo.com/newsletter/weekly/2016/11-11-282/images/cooknart71.jpg">
</div>
<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br>
<!-- The dots/circles -->
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
</div>
</section>
<section class="cakes">
<figure class="cake">
<img class="cake-img" alt="millefoglie" src="https://www.tavolartegusto.it/wp/wp-content/uploads/2018/06/Millefoglie-Ricetta-Millefoglie-alla-crema-1-1.jpg">
<figcaption>Millefoglie cake</figcaption>
</figure>
<figure class="cake">
<img class="cake-img" alt="profiteroles" src="https://images.immediate.co.uk/production/volatile/sites/2/2017/12/xmas-Cover-17-V1-WHITE-90341eb.jpg?webp=true&quality=90&crop=3566px%2C3349px%2C4663px%2C3106px&resize=620%2C413">
<figcaption>Profiteroles</figcaption>
</figure>
<figure class="cake">
<img class="cake-img" alt="fruit tart" src="https://hips.hearstapps.com/hmg-prod.s3.amazonaws.com/images/delish-200612-fruit-tart-0001-landscape-ag-1592424815.jpg?crop=1.00xw:1.00xh;0,0&resize=980:*">
<figcaption>Fresh fruit tart</figcaption>
</figure>
<figure class="cake">
<img class="cake-img" alt="sacher torte" src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/15/SacherTorta-Ribizli.jpg/1280px-SacherTorta-Ribizli.jpg">
<figcaption>Sacher torte</figcaption>
</figure>
</section>
<footer class="footer">
<div class="footer-item">
<h3>Site map</h3>
<p>Home</p>
<p>Cakes</p>
<p>Ordering</p>
<p>Lessons</p>
<p>About</p>
</div>
<div class="footer-item">
<h3>Contact</h3>
<p>xx Road Name </p>
<p>City</p>
<p>Country</p>
<p>Phone number</p>
</div>
<div class="footer-item">
<h3>Delivery</h3>
<p>We offer FREE delivery on orders above £50!</p>
</div>
</footer>
</body>
<script type="text/javascript" src="carousel.js"></script>
</html>