-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (72 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ezly - Order & Book</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation Bar -->
<header>
<nav>
<h1>Ezly</h1>
<ul>
<li><a href="#products">Products</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#login">Login</a></li>
</ul>
</nav>
</header>
<!-- Product Section -->
<section id="products">
<h2>Browse Products</h2>
<div class="categories">
<!-- Food Category -->
<div class="category">
<h3>Food</h3>
<div class="product-list" id="food-products"></div>
</div>
<!-- Stationery Category -->
<div class="category">
<h3>Stationery</h3>
<div class="product-list" id="stationery-products"></div>
</div>
<!-- Medicine Category -->
<div class="category">
<h3>Medicine</h3>
<div class="product-list" id="medicine-products"></div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services">
<h2>Book Appointments</h2>
<div class="booking">
<label for="service-type">Choose a Service:</label>
<select id="service-type">
<option value="Haircut" data-price="150">Haircut - ₹150</option>
<option value="Football Turf" data-price="300">Football Turf - ₹300</option>
<option value="Doctor Appointment" data-price="500">Doctor Appointment - ₹500</option>
<option value="Beauty Parlour" data-price="250">Beauty Parlour - ₹250</option>
</select>
<label for="service-date">Choose a Date:</label>
<input type="date" id="service-date">
<button id="book-service">Book Now</button>
</div>
<p id="booking-status"></p>
</section>
<!-- Login Section -->
<section id="login">
<h2>Login/Signup</h2>
<form id="login-form">
<label for="username">Username:</label>
<input type="text" id="username" required>
<label for="password">Password:</label>
<input type="password" id="password" required>
<button type="submit">Login</button>
</form>
</section>
<script src="script.js"></script>
</body>
</html>