-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout-student.html
211 lines (185 loc) · 5.42 KB
/
about-student.html
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<!DOCTYPE html>
<html lang="en">
<head>
<title>About Us - Student Portal</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="logo.png" type="image/x-icon" />
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" />
<style>
/* General Scrollable and Body Styling */
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow-y: auto;
scroll-behavior: smooth;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
color: white;
font-family: Arial, sans-serif;
}
.about-container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
animation: fadeIn 0.5s ease-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 3rem;
padding-bottom: 1rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.back-btn {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.8rem 1.5rem;
background: rgba(255, 51, 102, 0.9);
border-radius: 8px;
border: none;
color: white;
cursor: pointer;
transition: all 0.3s ease;
}
.back-btn:hover {
background: #ff4477;
transform: translateY(-2px);
}
.section {
background: rgba(255, 255, 255, 0.05);
padding: 2rem;
border-radius: 15px;
margin-bottom: 2rem;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
transition: transform 0.3s ease;
}
.section:hover {
transform: translateY(-5px);
}
.section h2 {
color: #ffcc33;
margin-bottom: 1rem;
}
.section p {
line-height: 1.6;
margin-bottom: 1rem;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin: 3rem 0;
}
.stat-card {
background: rgba(255, 255, 255, 0.05);
padding: 2rem;
border-radius: 15px;
text-align: center;
animation: fadeIn 0.5s ease-out;
}
.stat-number {
font-size: 2.5rem;
font-weight: bold;
color: #ffcc33;
margin-bottom: 0.5rem;
}
.contact-section {
background: rgba(255, 255, 255, 0.1);
padding: 3rem;
border-radius: 20px;
margin-top: 4rem;
text-align: center;
backdrop-filter: blur(15px);
border: 1px solid rgba(255, 255, 255, 0.2);
animation: glow 2s infinite alternate;
}
@keyframes glow {
from { box-shadow: 0 0 20px rgba(255, 204, 51, 0.1); }
to { box-shadow: 0 0 30px rgba(255, 204, 51, 0.2); }
}
.contact-info {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.contact-card {
padding: 1.5rem;
background: rgba(0, 0, 0, 0.2);
border-radius: 10px;
transition: all 0.3s ease;
}
.contact-card:hover {
transform: translateY(-3px);
background: rgba(0, 0, 0, 0.3);
}
.contact-card i {
font-size: 2rem;
margin-bottom: 1rem;
color: #ffcc33;
}
</style>
</head>
<body>
<div class="about-container">
<div class="header">
<h1>About Our Institution</h1>
<button onclick="goBack()" class="back-btn">
<i class="fas fa-arrow-left"></i>
Back to Homepage
</button>
</div>
<div class="section">
<h2>Student Life</h2>
<p>Experience a vibrant campus life filled with opportunities for learning, growth, and personal development. Our institution provides state-of-the-art facilities and a supportive environment for academic excellence.</p>
</div>
<div class="section">
<h2>Academic Excellence</h2>
<p>We offer diverse programs designed to prepare students for successful careers and leadership roles in their chosen fields. Our curriculum combines theoretical knowledge with practical experience.</p>
</div>
<div class="section">
<h2>Campus Facilities</h2>
<p>Enjoy modern classrooms, well-equipped laboratories, extensive library resources, and recreational facilities that enhance your learning experience and personal growth.</p>
</div>
<div class="contact-section">
<h2>Contact Us</h2>
<p>Have questions? We're here to help!</p>
<div class="contact-info">
<div class="contact-card">
<i class="fas fa-envelope"></i>
<h3>Email</h3>
<p>[email protected]</p>
</div>
<div class="contact-card">
<i class="fas fa-phone"></i>
<h3>Phone</h3>
<p>+91 6712595061</p>
</div>
<div class="contact-card">
<i class="fas fa-map-marker-alt"></i>
<h3>Location</h3>
<p>DRIEMS Polytechnic
Tangi, Cuttack Odisha, India</p>
</div>
</div>
</div>
</div>
<script>
function goBack() {
const urlParams = new URLSearchParams(window.location.search);
const userId = urlParams.get('id');
window.location.href = `index.html?id=${userId}`;
}
</script>
</body>
</html>