File size: 935 Bytes
2d78b5c
 
 
 
 
 
43125ec
2d78b5c
 
 
43125ec
 
 
 
 
 
 
 
 
 
 
 
 
2d78b5c
 
43125ec
2d78b5c
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Restaurant Chatbot</title>
    <link rel="stylesheet" href="chatbot.css">
</head>
<body>
    <div class="chat-container">
        <div class="chatbox">
            <div class="chatbox-header">
                <h2>Restaurant Chatbot</h2>
            </div>
            <div class="chatbox-body" id="chatbox-body">
                <div class="message bot-message">Hello! What ingredients do you have today?</div>
            </div>
            <div class="chatbox-footer">
                <input type="text" id="user-input" placeholder="Type your ingredients..." />
                <button onclick="sendMessage()">Send</button>
            </div>
        </div>
        <div id="food-items" class="food-items"></div>
    </div>

    <script src="chatbot.js"></script>
</body>
</html>