Anshuman9600000 commited on
Commit
28a5f8a
·
verified ·
1 Parent(s): 99f2bbf

Create index.html

Browse files
Files changed (1) hide show
  1. index.html +20 -0
index.html ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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" />
6
+ <title>WebLLM Chatbot</title>
7
+ <link rel="stylesheet" href="style.css" />
8
+ </head>
9
+ <body>
10
+ <div class="chat-container">
11
+ <div id="chat-box" class="chat-box"></div>
12
+ <div class="input-area">
13
+ <input id="user-input" type="text" placeholder="Type your message..." autocomplete="off" />
14
+ <button id="send-button">Send</button>
15
+ </div>
16
+ </div>
17
+
18
+ <script type="module" src="main.js"></script>
19
+ </body>
20
+ </html>