Yaswanth56's picture
Create Templates/index.html
5d586ab verified
raw
history blame
728 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chef Bot</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="chat-container">
<div class="chat-header">🍳 Chef Bot</div>
<div class="chat-messages" id="chatMessages">
<div class="bot-message">Hi there! I'm Chef Bot! May I know your name?</div>
</div>
<div class="chat-input">
<input type="text" id="userInput" placeholder="Type your response...">
<button onclick="sendMessage()">Send</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>