Commit 90debc4 1 parent e4187fc commit 90debc4 Copy full SHA for 90debc4
File tree 1 file changed +0
-36
lines changed
1 file changed +0
-36
lines changed Original file line number Diff line number Diff line change 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
- < title > Chatbot</ title >
7
- </ head >
8
- < body >
9
1
10
- <!-- Chatbot Container -->
11
- < div class ="chat-container " style ="width: 400px; height: 500px; border: 1px solid #ccc; padding: 20px; border-radius: 10px; background-color: #fff; ">
12
-
13
- <!-- Chatbox Area -->
14
- < div class ="chat-box " style ="height: 350px; overflow-y: auto; padding: 10px; background-color: #f9f9f9; border-radius: 10px; ">
15
- <!-- Sample Bot Messages -->
16
- < div class ="message bot " style ="background-color: #d1e7dd; padding: 10px; margin-bottom: 10px; border-radius: 10px; max-width: 75%; ">
17
- < p > Hello! 👋 I'm your chatbot. How can I help you today?</ p >
18
- </ div >
19
-
20
- <!-- Sample User Messages -->
21
- < div class ="message user " style ="background-color: #cce5ff; padding: 10px; margin-bottom: 10px; border-radius: 10px; max-width: 75%; margin-left: auto; ">
22
- < p > Hi, I need help with my account.</ p >
23
- </ div >
24
-
25
- <!-- More messages can go here -->
26
- </ div >
27
-
28
- <!-- User Input Area -->
29
- < div class ="user-input-container " style ="display: flex; margin-top: 20px; ">
30
- < input type ="text " placeholder ="Type a message... " style ="flex-grow: 1; padding: 10px; border-radius: 5px; border: 1px solid #ccc; ">
31
- < button style ="padding: 10px; margin-left: 10px; background-color: #007bff; color: white; border: none; border-radius: 5px; "> Send</ button >
32
- </ div >
33
-
34
- </ div >
35
-
36
- </ body >
37
- </ html >
You can’t perform that action at this time.
0 commit comments