-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
47 lines (41 loc) · 987 Bytes
/
Copy pathindex.php
File metadata and controls
47 lines (41 loc) · 987 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Campus Management System</title>
<style>
body{
font-family: Arial;
background-color: #f4f4f4;
padding: 20px;
}
.container{
width: 600px;
margin: auto;
background: white;
padding: 20px;
border-radius: 10px;
}
a{
display: block;
margin: 15px 0;
padding: 15px;
background: darkblue;
color: white;
text-decoration: none;
text-align: center;
border-radius: 5px;
}
a:hover{
background: navy;
}
</style>
</head>
<body>
<div class="container">
<h1>Campus Management System</h1>
<a href="parking.php">Parking Permit Module</a>
<a href="library.php">Library Borrowing Module</a>
<a href="performance.php">Student Performance Module</a>
</div>
</body>
</html>