-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
150 lines (131 loc) · 3.48 KB
/
index.html
File metadata and controls
150 lines (131 loc) · 3.48 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
body {
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: white;
color: black;
font-family: Arial, sans-serif;
}
header {
background-color: #007bff;
text-align: center;
padding: 20px;
}
header h1 {
font-size: 36px;
color: #fff;
display: inline-block;
}
header p {
font-size: 18px;
margin-top: 10px;
color: #fff;
}
main {
margin: 80px;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.content {
background-color: white;
padding: 30px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
flex: 1;
max-width: 600px;
/* Set the same max-width for both content and image */
margin-left: 40px;
text-align: center;
}
.college-photo {
flex: 1;
max-width: 600px;
/* Set the same max-width for both content and image */
margin-right: 40px;
}
.Customercare img {
width: 100%;
border-radius: 5px;
}
p {
font-size: 20px;
margin-bottom: 15px;
}
.login-button {
display: inline-block;
padding: 20px 40px;
font-size: 24px;
background-color: #007bff;
color: #fff;
text-decoration: none;
font-weight: bold;
border-radius: 3px;
transition: background-color 0.2s;
}
.login-button:hover {
background-color: #0056b3;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
hr {
margin-top: 60px;
border-color: #555;
}
/* Responsive styles */
@media (max-width: 768px) {
main {
flex-direction: column;
align-items: center;
}
.Customercare,
.content {
max-width: none;
margin-right: 0;
margin-left: 0;
}
}
li {
margin: 10px;
font-size: 12px;
font-weight: 600;
font-family: "Exo 2", sans-serif;
}
</style>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<title>College Management System</title>
</head>
<body>
<header>
<h1>Institute Grievance Managment System</h1>
<p style="font-family: Exo 2;">Your one-stop solution for college administration</p>
</header>
<main>
<div class="Customercare">
<img src="customerCare.png" alt="College Photo" />
</div>
<section class="content">
<p style="font-family:Exo ;">
"WE TRY TO RESOLVE YOUR QUERIES."
</p>
<p style="font-family:Exo;">Click the button below to log in to your student account.</p>
<a href="login.php" class="login-button">Log In</a>
</section>
</main>
<div style="background-color: #373B31; color:white ; font-size:10px; padding:10px;height:150px">
<h1 style="margin: 10px;"> Contributors 🗿</h1>
<ul style="margin-top: 15px; padding-left:10px">
<li>2022UIC3613 ↦ Vishal </li>
<li>2022UIC3614 ↦ Pratistha Aggarwal</li>
<li>2022UIC3615 ↦ Mayukh chakraborty</li>
<li>2022UIC3616 ↦ Devansh Manchanda</li>
</ul>
</div>
</body>
</html>