-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbook.html
52 lines (39 loc) · 1.75 KB
/
book.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Book Slot - Chandni Photo Studio</title>
<link rel="stylesheet" href="book.css">
</head>
<body>
<section id="book-slot">
<div class="container">
<h2>Book a Slot</h2>
<p>Schedule your session with Chandni Photo Studio!</p>
<form id="book-slot-form">
<label for="name">Full Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="phone">Phone Number:</label>
<input type="tel" id="phone" name="phone" required pattern="[0-9]{10}" placeholder="1234567890">
<label for="date">Preferred Date:</label>
<input type="date" id="date" name="date" required>
<label for="time">Preferred Time:</label>
<input type="time" id="time" name="time" required>
<label for="service">Service Type:</label>
<select id="service" name="service" required>
<option value="" disabled selected>Select a Service</option>
<option value="wedding">Wedding Photography</option>
<option value="event">Event Photography</option>
<option value="portrait">Portrait Photography</option>
</select>
<button type="submit">Book Now</button>
</form>
<div id="confirmation-message"></div>
</div>
</section>
<script src="book.js"></script>
</body>
</html>