web_desire / Index.html
nruto's picture
Upload 5 files
1a47215 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Chatbot</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="chat-container">
<div class="chat-header">
<h1>AI Assistant</h1>
</div>
<div id="connection-status" style="text-align: center; padding: 10px; display: none;">
<p style="color: red;">⚠️ Not connected to server</p>
</div>
<div class="chat-messages" id="chat-messages">
<!-- Messages will be added here dynamically -->
</div>
<div class="chat-input">
<textarea id="user-input" placeholder="Type your message here..."></textarea>
<button id="send-button">Send</button>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>