smartstudy-buddyhub / contact.html
itamarlifshitz's picture
make an working site that if i click on any thing it will work
9882ee8 verified
<!DOCTYPE html>
<html lang="he" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ืฆื•ืจ ืงืฉืจ - 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="contact-section">
<h1>ืฆื•ืจ ืงืฉืจ</h1>
<div class="contact-content">
<div class="contact-info">
<h2>ืคืจื˜ื™ ื™ืฆื™ืจืช ืงืฉืจ</h2>
<p><i class="fas fa-map-marker-alt"></i> ืจื—ื•ื‘ ื”ื“ืงืœ 15, ืชืœ ืื‘ื™ื‘</p>
<p><i class="fas fa-phone"></i> 03-1234567</p>
<p><i class="fas fa-envelope"></i> [email protected]</p>
</div>
<form class="contact-form">
<div class="form-group">
<label for="name">ืฉื ืžืœื</label>
<input type="text" id="name" required>
</div>
<div class="form-group">
<label for="email">ืื™ืžื™ื™ืœ</label>
<input type="email" id="email" required>
</div>
<div class="form-group">
<label for="message">ื”ื•ื“ืขื”</label>
<textarea id="message" rows="5" required></textarea>
</div>
<button type="submit" class="btn primary">ืฉืœื— ื”ื•ื“ืขื”</button>
</form>
</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>