diff --git a/BookSlot.html b/BookSlot.html
new file mode 100644
index 0000000000000000000000000000000000000000..0b579485dcb29bcd60abe0c1e1c368ba52f1d8db
--- /dev/null
+++ b/BookSlot.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<html lang="zh-CN">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Healthcare Booking</title>
+    <link rel="stylesheet" href="src/resources/static/css/book.css">
+</head>
+<body>
+<div class="container">
+    <h1>Welcome to the booking system</h1>
+    <form id="bookingForm">
+        <div class="form-group">
+            <label for="name">Name:</label>
+            <input type="text" id="name" placeholder="Please insert your name" required>
+        </div>
+
+        <div class="form-group">
+            <label for="email">Email:</label>
+            <input type="email" id="email" placeholder="Please insert your email" required>
+        </div>
+
+        <div class="form-group">
+            <label for="date">Please choose the date:</label>
+            <input type="date" id="date" required>
+        </div>
+
+        <div class="form-group">
+            <label for="time">Please choose the time:</label>
+            <input type="time" id="time" required>
+        </div>
+
+        <button type="submit">Submit an appointment</button>
+    </form>
+</div>
+
+<script src="script.js"></script>
+</body>
+</html>