-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudy.html
94 lines (86 loc) · 2.11 KB
/
study.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
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<style>
/* Reset some default styles */
body, h1, h2, p {
margin: 0;
padding: 0;
}
/* Set a background color and text color */Study
body {
background-color: #f0f0f0;
font-family: Arial, sans-serif;
color: #333;
}
/* Header styles */
header {
background-color: #0072C6;
color: #fff;
padding: 10px 0;
text-align: center;
}
/* Navigation menu styles */
nav {
background-color: #005197;
text-align: center;
}
nav ul {
list-style: none;
padding: 0;
}
nav li {
display: inline;
margin-right: 20px;
}
nav a {
text-decoration: none;
color: #fff;
font-weight: bold;
}
/* Main content styles */
.container {
max-width: 960px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Footer styles */
footer {
background-color: #0072C6;
color: #fff;
text-align: center;
padding: 10px 0;
}
</style>
</head>
<body>
<header>
<h1>Aasha Study Page</h1>
<p>Excellence in Education</p>
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Resources</a></li>
<li><a href="#">Admissions</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
<div class="container">
<center>
<h2>Welcome to ICSE Board</h2>
<p>SIH</p>
<!-- Add more content here -->
</center>
</div>
<footer>
© 2023 ICSE Board
</footer>
</body>
</html>