Spaces:
Runtime error
Runtime error
Create index.html
Browse files- index.html +21 -0
index.html
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Hotel Booking Chatbot</title>
|
7 |
+
<link rel="stylesheet" href="style.css">
|
8 |
+
<script src="script.js" defer></script>
|
9 |
+
</head>
|
10 |
+
<body>
|
11 |
+
<div id="chat-container">
|
12 |
+
<div id="chat-box">
|
13 |
+
<div id="messages"></div>
|
14 |
+
<div id="input-container">
|
15 |
+
<input type="text" id="chat-input" placeholder="Type a message...">
|
16 |
+
<button id="send-button">Send</button>
|
17 |
+
</div>
|
18 |
+
</div>
|
19 |
+
</div>
|
20 |
+
</body>
|
21 |
+
</html>
|