-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindexx.html
More file actions
52 lines (52 loc) · 1.34 KB
/
Copy pathindexx.html
File metadata and controls
52 lines (52 loc) · 1.34 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>College Complaint System</title>
<link rel="stylesheet" href="style.css" />
<style>
body {
background: linear-gradient(to right, #667eea, #764ba2);
color: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
h1 {
margin-bottom: 40px;
font-size: 2.5rem;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.button-group {
display: flex;
gap: 20px;
}
.button-group a {
padding: 14px 28px;
font-size: 1.2rem;
font-weight: bold;
color: white;
background-color: #4f46e5;
border-radius: 12px;
text-decoration: none;
transition: background-color 0.3s ease;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.button-group a:hover {
background-color: #4338ca;
}
</style>
</head>
<body>
<h1>Welcome to the Campus Grievance Portal!</h1>
<div class="button-group">
<a href="student.html">I'm a Student</a>
<a href="admin.html">I'm an Admin</a>
</div>
</body>
</html>