File size: 551 Bytes
921fcc4
 
 
7f11b56
 
 
 
 
921fcc4
 
7f11b56
1e39cea
7f11b56
 
 
 
 
 
 
921fcc4
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Chatbot</title>
  <link rel="stylesheet" href="style.css">
  <script type="module" src="index.js"></script>
</head>
<body>
	<div class="header">
		<h1>CCAT 2025 HelpDesk</h1>
	</div>	
  <div class="chat-container">
    <div class="chat-box" id="chat-box"></div>
    <input type="text" id="user-input" placeholder="Type your message...">
    <button id="send-btn">Send</button>
  </div>
  
</body>
</html>