Spaces:
Sleeping
Sleeping
Update templates/index.html
Browse files- templates/index.html +6 -8
templates/index.html
CHANGED
@@ -4,19 +4,17 @@
|
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Chef Bot</title>
|
7 |
-
<link rel="stylesheet" href="
|
8 |
</head>
|
9 |
<body>
|
10 |
<div class="chat-container">
|
11 |
-
<div class="chat-header"
|
12 |
-
<div class="chat-messages" id="chatMessages">
|
13 |
-
<div class="bot-message">Hi there! I'm Chef Bot! May I know your name?</div>
|
14 |
-
</div>
|
15 |
<div class="chat-input">
|
16 |
-
<input type="text" id="userInput" placeholder="Type your
|
17 |
-
<button
|
18 |
</div>
|
19 |
</div>
|
20 |
-
<script src="
|
21 |
</body>
|
22 |
</html>
|
|
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
<title>Chef Bot</title>
|
7 |
+
<link rel="stylesheet" href="styles.css">
|
8 |
</head>
|
9 |
<body>
|
10 |
<div class="chat-container">
|
11 |
+
<div class="chat-header">Chef Bot</div>
|
12 |
+
<div class="chat-messages" id="chatMessages"></div>
|
|
|
|
|
13 |
<div class="chat-input">
|
14 |
+
<input type="text" id="userInput" placeholder="Type your message...">
|
15 |
+
<button>Send</button>
|
16 |
</div>
|
17 |
</div>
|
18 |
+
<script src="script.js"></script>
|
19 |
</body>
|
20 |
</html>
|