-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (99 loc) · 5.04 KB
/
Copy pathindex.html
File metadata and controls
123 lines (99 loc) · 5.04 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
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kurale&display=swap" rel="stylesheet">
<title>Baker’s Quartet</title>
</head>
<body>
<!--Navbar Section Start-->
<header>
<div class="nav">
<a href="#" class="logo-1"><img src="images\bake__2_.png"></a>
<div class="bx bx-menu" id="menu-icon"></div>
<ul class="navlist">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="product.html">The Goods</a></li>
<li><a href="form.html">Order Now</a></li>
</ul>
<a href="form.html" class="top-btn">Place an Order!</a>
</div>
</header>
<!--Navbar Section End-->
<section class="Landing_img">
<div class="header_buttons">
<button class="order_btn"><a href="form.html">ORDER NOW! </a></button>
<button class="learn_btn"><a href="about.html">LEARN MORE! </a></button>
</div>
</section>
<main>
<div class="greeting_text">
<h1 class="greeting">Welcome to Baker's Quartet</h1>
<button class="greeting_button"><a href="form.html">Click here for savings</a></button>
<p class="greeting_p">"The Only Bakery in the World Where The Food Makes You Sing!" </p>
</div>
<section class="products-container">
<div class="row">
<figure class="cake">
<a href="form.html"><img src="./images/landing_cake_img.jpg" class="landing-products"></a>
<figcaption>Order a specialty cake </figcaption>
</figure>
<figure class="macaroons">
<a href="form.html"><img src="./images/macaroons-landing-img.jpg" class="landing-products"></a>
<figcaption> Enjoy our tasty macaroons</figcaption>
</figure>
<figure class="cookies">
<a href="form.html"><img src="./images/cookies_landing_page.jpg" class="landing-products"></a>
<figcaption>Cookies baked fresh daily</figcaption>
</figure>
<figure class="cupcake">
<a href="form.html"><img src="./images/cupcakes.jpg" class="landing-products"></a>
<figcaption>Cupcakes with our special buttercream frosting </figcaption>
</figure>
<figure class="brownies">
<a href="form.html"><img src="./images/brownies.jpg" class="landing-products"></a>
<figcaption>Homemade double fudge brownies </figcaption>
</figure>
<figure class="doughnuts">
<a href="form.html"><img src="./images/doughnuts.jpg" class="landing-products"></a>
<figcaption>Doughnuts with your preferred filling </figcaption>
</figure>
</div>
</section>
</main>
<footer>
<img class="logo-2" src="images\bake__2_.png" width="200" height="200">
<div class="loca">
<h3 class="loca-title">Locations</h3>
<ul class="loca-list">
<li><a class="dallas" href="#">Dallas</a></li>
<li><a class="wash" href="#">Washington</a></li>
<li><a class="new" href="#">New York</a></li>
<li><a class="moon" href="#">The Moon</a></li>
</ul>
</div>
<div class="cust">
<h3 class="cust-title">Customer Service</h3>
<ul class="cust-list">
<li><a class="faq" href="#">FAQ</a></li>
<li><a class="con" href="#">Contact Us</a></li>
<li><a class="ship" href="#">Shipping Info</a></li>
</ul>
</div>
<div class="reso">
<h3 class="reso-title">Other Resources</h3>
<li><a class="face" href="#">Facebook</a></li>
<li><a class="insta" href="#">Instagram</a></li>
<li><a class="twit" href="#">Twitter</a></li>
</div>
</footer>
<script src="scripts/itemController.js"></script>
<script src="scripts/index.js"></script>
</body>
</html>