js / index.html
AilexGPT's picture
Update index.html
80f978e
raw
history blame
No virus
508 Bytes
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chatbot Interface</title>
</head>
<body>
<div id="chat-container">
<div id="chat-box"></div>
<input type="text" id="user-input" placeholder="Nachricht eingeben...">
<button id="send-button">Senden</button>
</div>
<script src="script.js"></script>
</body>
</html>