Spaces:
Runtime error
Runtime error
Srinivasulu kethanaboina
commited on
Update static/index.html
Browse files- static/index.html +17 -1
static/index.html
CHANGED
@@ -1 +1,17 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
<link rel="stylesheet" href="styles.css">
|
7 |
+
<title>Chat Interface</title>
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<div id="chat-container">
|
11 |
+
<div id="chat-history"></div>
|
12 |
+
<input type="text" id="user-input" placeholder="Type your message...">
|
13 |
+
<button id="send-button">Send</button>
|
14 |
+
</div>
|
15 |
+
<script src="script.js"></script>
|
16 |
+
</body>
|
17 |
+
</html>
|