-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
79 lines (73 loc) · 3.32 KB
/
about.html
File metadata and controls
79 lines (73 loc) · 3.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>INTERFACE</title>
<link rel="icon" type="image/x-icon" href="./public/kgec.png">
<script src="https://cdn.tailwindcss.com"></script>
<style>
body {
background-color: black;
margin: 0;
padding: 0;
}
.reveal-text {
opacity: 0;
transform: translateY(20px);
animation: revealText 0.8s ease forwards;
}
@keyframes revealText {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
@media (max-width: 640px) {
.text-content {
font-size: 1rem;
line-height: 1.5;
}
}
</style>
</head>
<body>
<div class="main w-full font-mono bg-black min-h-screen">
<!-- Navbar -->
<nav class="w-full px-4 sm:px-10 py-3 sm:py-5 flex flex-col sm:flex-row justify-center sm:justify-between items-center">
<a href="index.html">
<img src="./public/kgec.png" class="w-[40px] sm:w-[50px] mix-blend-lighten filter saturate-150 contrast-125 mb-3 sm:mb-0">
</a>
<div class="flex flex-wrap justify-center gap-3 sm:gap-5 items-center">
<a href="index.html" class="tracking-tight text-white hover:text-blue-400 hover:text-shadow-[0_0_20px_#60A5FA] transition-all text-sm sm:text-base">Home</a>
<a href="about.html" class="tracking-tight text-blue-400 text-shadow-[0_0_20px_#60A5FA] transition-all text-sm sm:text-base">About</a>
<a href="contributors.html" class="tracking-tight text-white hover:text-blue-400 hover:text-shadow-[0_0_20px_#60A5FA] transition-all text-sm sm:text-base">Contributors</a>
<a href="contact.html" class="tracking-tight text-white hover:text-blue-400 hover:text-shadow-[0_0_20px_#60A5FA] transition-all text-sm sm:text-base">Contact</a>
</div>
</nav>
<!-- About Content -->
<div class="container mx-auto px-4 py-20">
<h1 class="text-4xl sm:text-5xl text-white font-bold mb-10 text-center reveal-text">About The Magazine</h1>
<div class="max-w-4xl mx-auto text-white space-y-6">
<p class="text-lg leading-relaxed reveal-text delay-1 text-content">
Welcome to INTERFACE - the official magazine of the MCA Department at Kalyani Government Engineering College. Our publication serves as a platform for showcasing the creative and technical talents of our students while keeping our readers informed about the latest developments in technology and computing.
</p>
<p class="text-lg leading-relaxed reveal-text delay-2 text-content">
Through this magazine, we aim to bridge the gap between academic learning and real-world applications, featuring articles, projects, and insights from our talented students and faculty members.
</p>
<p class="text-lg leading-relaxed reveal-text delay-3 text-content">
INTERFACE is more than just a magazine - it's a reflection of our department's commitment to excellence and innovation in the field of computer applications.
</p>
</div>
</div>
</div>
</body>
</html>