<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> | |