Skip to content

Commit 1c86df4

Browse files
Create index.html
0 parents  commit 1c86df4

File tree

1 file changed

+99
-0
lines changed

1 file changed

+99
-0
lines changed

index.html

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>RTU Notes - Educational Website</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
margin: 0;
11+
padding: 0;
12+
background-color: #f4f4f4;
13+
}
14+
header {
15+
background: #333;
16+
color: white;
17+
padding: 15px;
18+
text-align: center;
19+
}
20+
nav ul {
21+
list-style: none;
22+
padding: 0;
23+
}
24+
nav ul li {
25+
display: inline;
26+
margin: 0 15px;
27+
}
28+
nav ul li a {
29+
color: white;
30+
text-decoration: none;
31+
}
32+
section {
33+
padding: 20px;
34+
margin: 20px;
35+
background: white;
36+
border-radius: 5px;
37+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
38+
}
39+
button {
40+
background: #28a745;
41+
color: white;
42+
padding: 10px 15px;
43+
border: none;
44+
cursor: pointer;
45+
border-radius: 5px;
46+
}
47+
button:hover {
48+
background: #218838;
49+
}
50+
footer {
51+
text-align: center;
52+
padding: 10px;
53+
background: #333;
54+
color: white;
55+
position: relative;
56+
bottom: 0;
57+
width: 100%;
58+
}
59+
</style>
60+
</head>
61+
<body>
62+
<header>
63+
<h1>Welcome to Study Hub</h1>
64+
<nav>
65+
<ul>
66+
<li><a href="#home">Home</a></li>
67+
<li><a href="#subjects">Subjects</a></li>
68+
<li><a href="#resources">Resources</a></li>
69+
<li><a href="#contact">Contact</a></li>
70+
</ul>
71+
</nav>
72+
</header>
73+
74+
<section id="home">
75+
<h2>Enhance Your Learning</h2>
76+
<p>Access previous year papers, sample papers, and study materials for better preparation.</p>
77+
</section>
78+
79+
<section id="subjects">
80+
<h2>Subjects</h2>
81+
<ul>
82+
<li>Mathematics</li>
83+
<li>Science</li>
84+
<li>English</li>
85+
<li>Hindi</li>
86+
</ul>
87+
</section>
88+
89+
<section id="resources">
90+
<h2>Resources</h2>
91+
<p>Download previous year papers, sample papers, and solutions.</p>
92+
<button>Download Now</button>
93+
</section>
94+
95+
<footer>
96+
<p>&copy; 2025 Study Hub. All rights reserved.</p>
97+
</footer>
98+
</body>
99+
</html>

0 commit comments

Comments
 (0)