chatinnovx / index.html
SELIGROUP's picture
Update index.html
a6c677e verified
raw
history blame contribute delete
726 Bytes
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chatbot - INNOVX SARL</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="chatbot-container">
<div class="chatbot-header">
<h1>Chatbot INNOVX SARL</h1>
</div>
<div class="chatbot-messages" id="chatbot-messages">
<div class="message bot-message">Bonjour! Comment puis-je vous aider aujourd'hui?</div>
</div>
<div class="chatbot-input">
<input type="text" id="user-input" placeholder="Tapez votre message ici...">
<button id="send-btn">Envoyer</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>