File size: 1,303 Bytes
9882ee8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
<!DOCTYPE html>
<html lang="he" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ืฆ'ืื AI - SmartStudy BuddyHub</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<custom-navbar></custom-navbar>
<main class="container">
<section class="chat-container">
<h1>ืฆ'ืื AI</h1>
<div class="chat-box">
<div class="messages">
<div class="message bot">
<p>ืฉืืื! ืื ื ืืขืืืจ ืืืืืืื ืืืื. ืืื ืื ื ืืืื ืืขืืืจ ืื ืืืื?</p>
</div>
</div>
<div class="input-area">
<input type="text" placeholder="ืืชืื ืืช ืฉืืืชื ืืื...">
<button class="btn primary"><i class="fas fa-paper-plane"></i></button>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
</body>
</html> |