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
98 lines (84 loc) · 3.48 KB
/
index.html
File metadata and controls
98 lines (84 loc) · 3.48 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
<!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>
<!-- Add your markup here -->
<header>
<img src="https://puttingtheiindesign.files.wordpress.com/2011/08/cake-logo-rgb.jpg"width="300"height="400">
<p>
We Specialize in Custom Cakes </br>
For All Occasions</br>
Wedding Cakes,Birthday Cakes and More.
</p>
</header>
<section>
<nav>
<a class="active" href="#home">Home</a>
<a href="#cakes">Cakes</a>
<a href="ordering">Ordering</a>
<a href="lessons">Lessons</a>
<a href="about">About</a>
</nav>
</section>
<section>
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">1/4</div>
<img src="http://www.oldmusicproject.com/images/CAKES/birthday-cake-popcorn.jpg"style="width:100%">
<div class="text">Caption Text</div>
</div>
<div class="mySlide fade">
<div class="numbertext">2/4</div>
<img src="http://www.oldmusicproject.com/images/CAKES/2-Awesome-Birthday-Cake-Ideas-1.jpg"style="width:70%">
<div class="text">Caption Two</div>
</div>
<div class="mySlides fade">
<div class="numbertext">3/4</div>
<img src="http://www.oldmusicproject.com/images/CAKES/m_Matcha_Sakura_Cake_grande.jpg">
<div class="text">Caption Three</div>
</div>
<div class="mySlides fade">
<div class="numbertext">4/4</div>
<img src="http://www.oldmusicproject.com/images/CAKES/old-friend-birthday-cake-763.jpg">
<div class="text">Caption Four</div>
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next"
onclick="plusSlides(1)">❯</a>
</div>
<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>
<span class="dot" onclick="currentSlide(4)"></span>
</div>
<aside>
<h1>
We make you <strong>unique</strong>
Cakes
</h1>
<ul>
<li>Cheesecakes</li>
<li>Pies</li>
<li>Slices</li>
</ul>
<p>Visit us and try our delicious cakes</p>
</aside>
<footer>
<div class="flex-container">
<a href="#">SITEMAP</a>
<a href="#">CONTACT</a>
<a href="#">DELIVERY</a>
</div>
</footer>
</div>
</section>
</body>
</html>