-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
149 lines (128 loc) · 4.56 KB
/
index.html
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!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">
<title>Home</title>
<link rel="stylesheet" href="footer.css">
<link rel="stylesheet" href="home-style.css">
</head>
<body>
<header>
<nav>
<img src="A1.png" alt="" id="logo">
<ul>
<li><a href="index.html">Home</a></li>
<li id="cakesWeBake"><a href="bday.html">Cakes We Bake</a></li>
<li><a href="contact-us.html">Contact Us</a></li>
</nav>
</header>
<main>
<hr>
<div class="slider">
</div>
</main>
<center>
<div class="about">
<pre>Cakes Handcrafted with love for your special moments,
We specialise in creating customised cakes. Your ideas and our craft , Order now !!</pre>
</div>
</center>
<div class="ourSpeciality">
<h2>Our Speciality</h2>
<div class="specialityImage">
<img src="speciality.jpeg" alt="">
</div>
<ul>
<li>Black Forest Cake</li>
<li>Eggless Cake</li>
<li>Any Custom Cake</li>
</ul>
</div>
<!-- <div class="review">
<h2>Our Reviews</h2>
<img src="Reviews.png" alt="">
</div> -->
<div class="review">
<h2>Our Reviews</h2>
<div class="rimg">
<img src="r1.jpeg" />
<img src="r2.jpeg" />
<img src="r3.jpeg" />
<img src="r4.jpeg" />
</div>
</div>
<div class="orderform">
<div class="order">
<h1 class="formhead">Want to order a cake now??</h1>
<form id="f1">
<input type="text" placeholder="Enter your name" id="formName" /><br><br>
<input type="text" placeholder="Enter your number" id="formNo" /><br><br>
<select name="flavor" id="formFl">
<option value="Vanilla" selected>Vanilla</option>
<option value="MudChocolate">Mud Chocolate</option>
<option value="CrunchyChocolate">Crunchy Chocolate</option>
<option value="ItalianChocolate">Italian Chocolate</option>
<option value="TruffleChocolate">Truffle Chocolate</option>
<option value="OreoKitkat">Oreo Kitkat</option>
<option value="Strawberry">Strawberry</option>
<option value="Pineapple">Pineapple</option>
<option value="Kiwi">Kiwi</option>
<option value="Litchi">Litchi</option>
<option value="Blueberry">Blueberry</option>
<option value="Casata">Casata</option>
<option value="Mix Fruits">Mix Fruits</option>
<option value="Mango">Mango</option>
<option value="Banana">Banana</option>
<option value="Chocolate">Chocolate</option>
</select><br><br>
<input type="text" placeholder="Enter occasion" id="formCategory"/><br><br>
<input type="text" placeholder="Enter the message" id="formMsg"/><br><br>
<input type="text" placeholder="Enter the weight" id="fromWt" /><br><br>
<input id="submitbtn" type="button" value="Order" onclick="OrderForm();" /><br><br>
</form>
</div>
</div>
<div id="footer">
<div class="main-footer">
<div class="address">
<h1>A-one Cake Shop</h1>
<pre>Address: A-one cake shop, Jogani Nagar,
Palanpur Patia, Surat, Gujarat 395009</pre>
</div>
<div class="contactDetails">
<h1>Contact Us</h1>
<li>
<a href="tel:+919326048690"><div class="fa fa-phone"></div>+91 078743 32255</a>
</li>
<li>
<a href="mailto:[email protected]"><div class="fa fa-envelope"></div>[email protected]</a>
</li>
</li>
</div>
<div class="com">
<h1>Visit</h1>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="contact-us.html">Contact-Us</a></li>
<li><a href="bday.html">CakesWeBake</a></li>
</ul>
</div>
<div class="info">
<h1>Social Media</h1>
<div class="sociallogos">
<div class="logobox">
<a target="_blank" href="https://www.instagram.com/bakers_biscuit/?igshid=YmMyMTA2M2Y%3D" class="fa fa-instagram"></a>
<a href="https://wa.me/917016506608?text=Hello+A1+Bakery%0D%0AI+would+like+to+order+a+customised+cake+for+my+friend%27s+birthday." class="fa fa-whatsapp"></a>
<a href="https://www.facebook.com" class="fa fa-facebook"></a>
<a href="https://www.youtube.com/@a-onecakepastry" class="fa fa-youtube"></a>
</div>
</div>
</div>
</div>
<footer>©Copyright 2023 All Rights Reserved</footer>
</div>
<script src="home-script.js"></script>
</body>
</html>