forked from aditihonagekar/web-technology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
5_schoolcssbox.html
93 lines (92 loc) · 2.15 KB
/
5_schoolcssbox.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>School Website</title>
<style>
/* CSS styles for the whole page */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
/* CSS styles for the header */
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
/* CSS styles for the navigation menu */
nav {
background-color: #555;
color: #fff;
padding: 10px;
text-align: center;
}
/* CSS styles for the main content area */
main {
padding: 20px;
background-color: #fff;
margin: 20px;
border: 1px solid #ccc;
}
/* CSS styles for the footer */
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Our School</h1>
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Courses</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<main>
<section>
<h2>About Us</h2>
<p>Welcome to Our School! We are dedicated to providing quality
education and fostering an environment where students can thrive academically,
socially, and personally.</p>
<p>At Our School, we believe in the power of education to transform
lives and make a positive impact on the world. With experienced faculty, stateof-the-art facilities, and a diverse community, we strive to empower our students
to reach their full potential.</p>
</section>
<section>
<h2>Our Courses</h2>
<p>We offer a wide range of courses in various disciplines. Whether
you're interested in arts, sciences, or technology, we have something for
you.</p>
<ul>
<li>Computer Science</li>
<li>Engineering</li>
<li>Business Administration</li>
<li>Art & Design</li>
</ul>
</section>
<section>
<h2>Contact Us</h2>
<p>If you have any questions or inquiries, feel free to reach out to
us:</p>
<p>Email: [email protected]</p>
<p>Phone: +1 234 567 8901</p>
<p>Address: 123 School Street, City, Country</p>
</section>
</main>
<footer>
<p>© 2024 School Website</p>
</footer>
</body>
</html>