tomalex04's picture
Sync latest code from Hugging Face
5906cc6
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fake News Detection Chatbot</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="chat-container" id="chat"></div>
<div class="input-area">
<input type="text" id="query" placeholder="Type news to verify..." />
<button id="sendBtn">Send</button>
</div>
<div class="chat-background" id="chat-background">
<p id="p1">Hey,</p>
<p id="p2">Discover misinformations around you,</p>
</div>
<script src="script.js"></script>
</body>
</html>