-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschool.html
65 lines (60 loc) · 2.43 KB
/
school.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DAV Public School</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">
<h1>DAV Public School</h1>
</div>
<nav>
<ul>
<li><a href="#about">About Us</a></li>
<li><a href="#academics">Academics</a></li>
<li><a href="#admissions">Admissions</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</nav>
</header>
<section id="hero">
<h2>Welcome to DAV Public School</h2>
<p>Where learning meets excellence and young minds are nurtured to grow and thrive.</p>
<a href="#admissions" class="cta-btn">Join Us Now!</a>
</section>
<section id="about">
<h2>About Us</h2>
<p>DAV Public School is committed to providing quality education to shape young minds into responsible citizens. Our curriculum is designed to foster creativity, critical thinking, and holistic development in a positive learning environment.</p>
</section>
<section id="academics">
<h2>Academics</h2>
<p>We offer a balanced curriculum that integrates academic rigor with extracurricular activities to ensure the all-around development of our students. Our academic program includes:</p>
<ul>
<li>Science, Mathematics, and Computer Science</li>
<li>Language and Literature</li>
<li>Physical Education and Sports</li>
<li>Art, Music, and Drama</li>
</ul>
</section>
<section id="admissions">
<h2>Admissions</h2>
<p>Admissions for the academic year 2024-2025 are now open. Follow the steps below to join the DAV family:</p>
<ul>
<li>Submit an online application</li>
<li>Attend the entrance test/interview</li>
<li>Complete the admission process</li>
</ul>
<a href="#contact" class="cta-btn">Contact Admissions</a>
</section>
<footer id="contact">
<h2>Contact Us</h2>
<p>If you have any queries, feel free to reach out to us:</p>
<p>Email: [email protected] | Phone: +91 1234567890</p>
<p>Address: 123, School Road, City, State</p>
<p>© 2024 DAV Public School. All Rights Reserved.</p>
</footer>
</body>
</html>