File size: 1,123 Bytes
c550f7d
7a26522
c550f7d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7a26522
 
c550f7d
 
 
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
<!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="styles.css" />
    </head>
    <body>
        <div class="chat-container">
            <div class="chat-box" id="chatBox">
                <div class="messages" id="messages"></div>
                <div
                    class="typing-indicator"
                    id="typingIndicator"
                    style="display: none"
                >
                    <div class="dot"></div>
                    <div class="dot"></div>
                    <div class="dot"></div>
                </div>
            </div>
            <div class="input-area">
                <textarea
                    id="userInput"
                    placeholder="Type your message here..."
                    rows="1"
                ></textarea>
                <button onclick="sendMessage()">Send</button>
            </div>
        </div>
        <script src="script.js"></script>
    </body>
</html>