-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterface.html
38 lines (35 loc) · 1.12 KB
/
interface.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Available Time Slots</title>
<!-- Link to your external CSS file for styling -->
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="container">
<!-- Page heading for Time Slots -->
<h1>Available Time Slots</h1>
<!-- First Time Slot -->
<div class="time-slot">
<!-- Date for the time slot -->
<p>Date: September 10, 2023</p>
<!-- Time range for the time slot -->
<p>Time: 10:00 AM - 11:00 AM</p>
<!-- Button to book the time slot -->
<button class="book-button">Book</button>
</div>
<!-- Second Time Slot -->
<div class="time-slot">
<!-- Date for the time slot -->
<p>Date: September 10, 2023</p>
<!-- Time range for the time slot -->
<p>Time: 11:30 AM - 12:30 PM</p>
<!-- Button to book the time slot -->
<button class="book-button">Book</button>
</div>
<!-- More time slots can be added here with similar structure -->
</div>
</body>
</html>