Yaswanth56 commited on
Commit
5d586ab
·
verified ·
1 Parent(s): 93dbf20

Create Templates/index.html

Browse files
Files changed (1) hide show
  1. Templates/index.html +22 -0
Templates/index.html ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>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">
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 response...">
17
+ <button onclick="sendMessage()">Send</button>
18
+ </div>
19
+ </div>
20
+ <script src="script.js"></script>
21
+ </body>
22
+ </html>