Spaces:
Running
Running
<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"> | |
</head> | |
<body> | |
<div class="container"> | |
<header> | |
<h1>AI Chatbot</h1> | |
<p>Ask anything and get responses powered by Gemma model.</p> | |
</header> | |
<div id="chat-container" class="chat-container" aria-live="polite"> | |
<!-- Chat messages will be appended here --> | |
</div> | |
<form id="chat-form" class="input-form"> | |
<input type="text" id="user-input" placeholder="Type your message..." aria-label="Type your message" required> | |
<button type="submit" id="send-btn">Send</button> | |
</form> | |
<div id="loading" class="loading" aria-hidden="true">Loading...</div> | |
<div id="error" class="error" aria-hidden="true"></div> | |
</div> | |
<script type="module" src="index.js"></script> | |
</body> | |
</html> |