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
106 lines (89 loc) · 3.25 KB
/
index.html
File metadata and controls
106 lines (89 loc) · 3.25 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
<!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">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
<!-- Add a link to your css file here -->
</head>
<body>
<!-- Add your markup here -->
<header>
<img src="images\cakelogo100x100.svg" alt="logo" class="logo">
<div class="header-text">
<h1 class="title">Sprinkles</h1>
<h3>add a magic touch to someone's day! </h3>
<img src="images\220px-Hamburger_icon.svg.webp" alt="Hamburger" class="hamburger">
</div>
<address>
<ol>
<li>20 Harehills Lane</li>
<li>RUCKINGE </li>
<li>TN26 4TD</li>
<li>Tel:077 2633 9183</li>
<li>email: <a href="">[email protected]</a> </li>
</ol>
</address>
<div class="contacts"> Contacts:
</div>
</header>
<nav>
<a href="">Home</a>
<a href=""> Cake</a>
<a href="">Ordering</a>
<a href=""> lessons</a>
<a href="">About</a>
</nav>
<section>
<aside>
<article>
<h1 class="welcome">Welcome</h1>
<img src="images\main.jpg " alt="cake background" class="main">
</article>
<article class="info">
<h1>Information</h1>
</article>
</aside>
<div class="carousel" alt="carousel">
<div class="slider">
<figure>
<img src="images\eggcake1000x540 (2).jpg" alt="cake1">
<img src="images\m&mcake1000x540.jpg" alt="cake2">
<img src="images\pinkiced1000x540.jpg" alt="cake3">
<img src="images\birthdat1000x540.jpg" alt="cake4">
<img src="images\eggcake1000x540 (2).jpg" alt="cake1">
</figure>
</div>
</div>
</section>
<div class="image-container size">
<figure class=" box box1">
<img src="images\monster500x500crop.jpg" alt="monster cake" class="size">
<figcaption> text goes here 1</figcaption>
</figure>
<figure class="box box2">
<img src="images\eggcake500x500.jpg" alt="mini egg cupcake" class="size">
<figcaption> text goes here 2</figcaption>
</figure>
<figure class="box box3">
<img src="images\fancycup500x500.jpg" alt="fancy iced cupcakes" class="size">
<figcaption> text goes here 3</figcaption>
</figure>
<figure class=" box box4">
<img src="images\macacake500x500.jpg" alt=" macaroon cake" class="size">
<figcaption> text goes here 4 </figcaption>
</figure>
</div>
<footer>
<a href="">Sitemap</a>
<a href="">Contacts</a>
<a href="">Delivery</a>
<a href="">Copyright</a>
<a href="">Privacy</a>
</footer>
</body>
</html>