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
92 lines (74 loc) · 2.96 KB
/
index.html
File metadata and controls
92 lines (74 loc) · 2.96 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
<!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">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,500,300' rel='stylesheet' type='text/css'>
<title>Responsive Cake webpage</title>
<meta name="description" content="The cake cafe shop is where you can order your cake">
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/x-icon" href="./img/cupcake logo.png">
</head>
<body>
<!-- Add your markup here -->
<header>
<img class="logo" src="./img/cupcake logo.png" alt="cupcake logo" >
<p>The best cake in town delivered to your door </p>
</header>
<nav>
<ul>
<li><a href="home">Home</a></li>
<li><a href="cakes">Cakes</a></li>
<li><a href="ordering">Ordering</a></li>
<li><a href="lesson">Lesson</a></li>
<li><a href="about">About</a></li>
<li><a href="contact-us">Contact us</a></li>
</ul>
<!-- <div class="ham-menu"></div> -->
</nav>
<main>
<section class="intro">
<img src="./img/cake table.jpg" alt="cake table image ">
<article>
<h2>Welcome</h2>
<p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been
the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley
of type and scrambled it to make a type specimen book. It has survived not only five centuries,
but also the leap into electronic typesetting, remaining essentially unchanged. </p>
</article>
</section>
<hr>
<section class="icons">
<ul>
<li>
<img src="./img/candle cake.jpg " alt= "candle cake icon">
</li>
<li>
<img src="./img/cherry cup cake.jpg " alt="cheery cake icon">
</li>
<li>
<img src="./img/Yellow cupcake.jpg " alt="yellow cup cake icon">
</li>
<li>
<img src="./img/ring donut.jpg" alt ="ring donut icon "">
</li>
</ul>
</section>
</main>
<hr>
<footer>
<div class="footer">
<img src="img/twitter-icon.svg" alt="twitter icon">
</li>
<img src="img/facebook-icon.svg" alt="facebook icon">
</li>
<img src="img/instagram-icon.svg" alt="instagram icon">
</li>
</ul>
<p>© cupcake cafe, inc. </p>
</footer>
</main>
</body>
</html>