-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHATBOT.html
37 lines (33 loc) · 857 Bytes
/
CHATBOT.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>Responsive Chatbot</title>
<style>
.chat-container {
width: 400px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
}
.chat-container .message {
margin-bottom: 10px;
}
.chat-container .user-message {
text-align: right;
color: blue;
}
.chat-container .bot-message {
text-align: left;
color: green;
}
</style>
</head>
<body>
<div class="chat-container">
<div id="chat-log"></div>
<input type="text" id="user-input" placeholder="Type your message..." />
<button onclick="sendMessage()">Send</button>
</div>
<script src="chatbot.js"></script>
</body>
</html>