smartstudy-buddyhub / chat.html
itamarlifshitz's picture
make an working site that if i click on any thing it will work
9882ee8 verified
raw
history blame
1.3 kB
<!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>