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
88 lines (85 loc) · 3.19 KB
/
index.html
File metadata and controls
88 lines (85 loc) · 3.19 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
<!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 rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Tangerine:wght@700&display=swap" rel="stylesheet">
<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-->
<header>
<div class="logo-and-name">
<img class="logo" img src="images/cupcake1.jpg" alt="">
<h1> Made With Love</h1>
<h2>Made With Love</h2>
</div>
<nav class="navigation">
<a href="#">Home</a>
<a href="#Gallery">Gallery</a>
<a href="#order">Order</a>
<a href="#contact-us">Contact Us</a>
</nav>
</header>
<!--home section-->
<section id="Home" class="flex-box">
<div class="advert-section">
<p>All Cakes</p>
<p>For Wedding</p>
<p>Birthday</p>
<p>Christmas</p>
<p>Celebration</p>
</div>
<div id="slider">
<!--slider-->
<figure>
<img src="images/birthday-cake.jpg" width="" alt="">
<img src="images/wedding-cake.jpg" width="" alt="">
<img src="images/logo-image.jpg" width="" alt="">
<img src="images/simple -cake.jpg" width="" alt="">
<img src="images/birthday-cake.jpg" width="" alt="">
</figure>
</div>
</section>
<section> <!--h1 check our gallery-->
<h2 class="image-gallery-h1">Check out Our Cake gallery</h2>
</section>
<!--gallery section-->
<section id="Gallery" class="image-gallery">
<img src="images/gallery image1.jpg" alt="">
<img src="images/gallery image5.jpg" alt="">
<img src="images/gallery image2.jpg" alt="">
<img src="images/gallery image3.jpg" alt="">
<img src="images/gallery image4.jpg" alt="">
<img src="images/gallery image6.jpg" alt="">
<img src="images/gallery image7.jpg" alt="">
<img src="images/cupcake.jpg" alt="">
</section>
<!--order section-->
<section id="order" class="order">
<h1>Ordering Is Made Easy</h1>
<p>Order By Calling</p>
<p>Order Online</p>
<h1>Delivery Is Fast</h1>
<p>Our Drivers are Fast and Responsible</p>
</section>
<!--footer-->
<footer id="contact-us">
<div class="footer">
<p>Email: <a href="#">[email protected]</a></p>
<p>Telephone: <a href="#"> 07000000000</a></p>
<a href="#"><iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2430.0761317913298!2d-1.9011466843543643!3d52.4777572471116!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487096f1df0e0571%3A0xedfa487a0f2ea32e!2sBirmingham%20New%20Street!5e0!3m2!1sen!2suk!4v1606494053486!5m2!1sen!2suk"
width="150" height="50" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false"
tabindex="0"></iframe></a>
</div>
</footer>
</body>
</html>