Skip to content

Commit 09ef811

Browse files
author
Pyiterator
authored
Add files via upload
0 parents  commit 09ef811

File tree

5 files changed

+1410
-0
lines changed

5 files changed

+1410
-0
lines changed

Home.html

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<title>Management System</title>
4+
<head>
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<link href="https://fonts.googleapis.com/css?family=Courgette" rel="stylesheet">
7+
<style>
8+
body{
9+
height: 100px;
10+
background: red;
11+
background: -webkit-linear-gradient(left, purple , #c987cb);
12+
background: -o-linear-gradient(right, purple , #c987cb);
13+
background: -moz-linear-gradient(right, purple , #c987cb);
14+
background: linear-gradient(to right, purple , #c987cb);
15+
font-family: Courgette;
16+
color:white;
17+
}
18+
h1{
19+
text-align: center;
20+
padding-top: 200px;
21+
padding-bottom: 50px;
22+
font-size: 50px;
23+
}
24+
.p1{
25+
padding:20px;
26+
border:2px solid white;
27+
border-radius: 10px;
28+
text-align: center;
29+
position: absolute;
30+
margin-left: 450px;
31+
}
32+
.p2{
33+
padding:20px;
34+
border:2px solid white;
35+
border-radius: 10px;
36+
text-align: center;
37+
position: absolute;
38+
margin-left: 850px;
39+
}
40+
.p1:hover{
41+
border-color: purple;
42+
background-color: purple;
43+
box-shadow: 0px 0px 24px white;
44+
}
45+
.p2:hover{
46+
border-color: purple;
47+
background-color: purple;
48+
box-shadow: 0px 0px 24px white;
49+
}
50+
#about{
51+
text-align: center;
52+
}
53+
.about{
54+
font-size: 24px;
55+
}
56+
.about:hover{
57+
text-decoration: underline;
58+
}
59+
a{
60+
color:white;
61+
}
62+
a:hover{
63+
color:white;
64+
text-decoration: none;
65+
}
66+
</style>
67+
68+
</head>
69+
<body>
70+
<p class="about" onclick="about()">About</p>
71+
<h1>Management System</h1>
72+
<p id="about"></p>
73+
<a href="http://localhost/management/studentform.php"><p class="p1">Enter The Student Data</p></a>
74+
<a href="http://localhost/management/teacher.php"><p class="p2">Enter The Teacher Data</p></a>
75+
<script>
76+
function about(){
77+
document.getElementById('about').innerHTML = "This is a College Management System Which can be used to Entry the Data of Students as well as Teacher's<br/>This Management System help's in the Collection of Student Data as well as Teacher's Data";
78+
}
79+
</script>
80+
81+
</body>
82+
</html>

0 commit comments

Comments
 (0)