-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourses.html
75 lines (70 loc) · 2.87 KB
/
courses.html
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Al Hikma Islamic Online Academy</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<nav>
<div class="navbar">
<div class="logo"><a href="index.html">Al-Hikma Islamic Academy</a></div>
<ul class="menu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="registration.php">Registation</a></li>
</ul>
</div>
</nav>
<section id="courses">
<h2>Our Courses</h2>
<div class="course">
<h3>Arabic Language (Higaad)</h3>
<p>Learn Arabic language in a short period. This course is designed to help you master the basics of Arabic effectively.</p>
</div>
<div class="course">
<h3>Quran</h3>
<p>Learn Quran recitation, tajweed, and tafseer. This course covers the following:
<ul>
<li>Recitation of the Quran</li>
<li>Tajweed rules</li>
<li>Tafseer of the Quran</li>
</ul>
</p>
</div>
<div class="course">
<h3>Islamic Tarbiyah</h3>
<p>Learn Islamic teachings and values through various lessons. This course focuses on nurturing a deep understanding of Islamic principles.</p>
</div>
</section>
<section id="audience">
<h2>Our Courses Are Designed For All Age Groups</h2>
<div class="audience-group">
<h3>Children</h3>
<p>Fun and interactive classes to instill a love for the Quran from an early age.</p>
</div>
<div class="audience-group">
<h3>Teens</h3>
<p>Structured learning environment with courses that challenge and inspire.</p>
</div>
<div class="audience-group">
<h3>Adults</h3>
<p>It's never too late to start or enhance your Islamic knowledge. Join our courses today!</p>
</div>
</section>
<footer>
<div class="footer-content">
<p>COPYRIGHT © 2024 Al-hikma Islamic Academy ALL RIGHTS RESERVED</p>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
</div>
</div>
</footer>
</body>
</html>