forked from Ameerah-2005/final-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbooking.html
More file actions
183 lines (144 loc) · 5.34 KB
/
booking.html
File metadata and controls
183 lines (144 loc) · 5.34 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
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Darodaz Greenline Styles</title>
<link rel="stylesheet" href="DGS.css">
</head>
<body>
<header>
<h1 class="logo">Darodaz Greenline Styles</h1>
<nav>
<ul class="nav-links" id="navLinks">
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="booking.html">Booking</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="cart.html" class="cart-link">Cart <span id="cart-count" class="cart-count">0</span></a></li>
<li><button onclick="darkMode()">Dark Mode</button></li>
</ul>
</nav>
</header>
<main class="container booking-page">
<div class="booking-intro">
<h1>Book Your Perfect Style</h1>
<p>Fill your booking details and we'll create a beautiful outfit specially designed for your child.</p>
</div>
<form id="booking-form" class="booking-form">
<div class="form-row">
<label>Preferred Color</label>
<select name="color">
<option>Pink</option>
<option>Gold</option>
<option>White</option>
<option>Purple</option>
<option>Red</option>
</select>
</div>
<div class="form-row">
<label>Fabric Option</label>
<select name="fabric">
<option>Customer Will Bring Fabric</option>
<option>Use Available Fabric</option>
</select>
</div>
<div class="form-row">
<label>Delivery Method</label>
<select name="delivery">
<option>Pick Up</option>
<option>Home Delivery</option>
</select>
</div>
<div class="form-row">
<label>Select Occasion</label>
<select name="occasion">
<option>Birthday Party</option>
<option>Wedding</option>
<option>Photoshoot</option>
<option>School Event</option>
<option>Special Occasion</option>
</select>
</div>
<div class="form-row">
<label>Upload Preferred Style</label>
<input type="file" name="image">
</div>
<div class="form-grid">
<input type="text" name="chest" placeholder="Chest Measurement">
<input type="text" name="waist" placeholder="Waist Measurement">
<input type="text" name="length" placeholder="Dress Length">
<input type="text" name="shoulder" placeholder="Shoulder Measurement">
<input type="text" name="armhole" placeholder="Arm Hole Measurement">
</div>
<div class="form-row">
<label>Additional Instructions</label>
<textarea name="instructions" placeholder="Any extra notes..."></textarea>
</div>
<div class="form-actions">
<a href="https://wa.me/2348137234250" class="btn-secondary">Book Via WhatsApp</a>
<button type="button" id="bookNowBtn" class="btn-primary">Book Now</button>
</div>
</form>
</main>
<div class="slider">
<div class="slides">
<img class="imgs" src="llogo.png" width="300" height="350">
<img class="imgs" src="cut.png" width="300" height="350">
<img class="imgs" src="sew.png" width="300" height="350">
<img class="imgs" src="bckgd.png" width="300" height="350">
</div>
</div>
<br>
<br><br>
<br>
<main>
<!--our products section-->
</main>
<hr>
<footer class="footer">
<div class="footer-container">
<!-- Brand -->
<div class="footer-box">
<h2>DARODAZ GREENLINE STYLES</h2>
<p>
Luxury children’s gowns and elegant styles for girls aged 0–12 years.
</p>
</div>
<!-- Quick Links -->
<div class="footer-box">
<h3>Quick Links</h3>
<a href="">Home</a>
<a href="">About</a>
<a href="">Gallery</a>
<a href="">Booking</a>
<a href="">Contact</a>
</div>
<!-- Contact -->
<div class="footer-box">
<h3>Contact Us</h3>
<p>📞 09070515874</p>
<p>📞 08137234250</p>
<p>💬BusinessWhatsApp: 08137234250</p>
<p>💬 WhatsApp: 09070515874</p>
<p>📧 darodamaryama@gmail.com</p>
<p>📍 Kaduna, Nigeria</p>
</div>
<!-- Social Media -->
<div class="footer-box">
<h3>Follow Us</h3>
<a href="">Instagram</a>
<a href="">WhatsApp</a>
</div>
</div>
<hr>
<p class="copyright">
© 2026 DARODAZ GREENLINE STYLES | All Rights Reserved
</p>
</footer>
</footer>
<div id="toast" class="toast" aria-hidden="true"></div>
<script src="DGS.js"></script>
</body>
</html>