-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathclubs.html
More file actions
122 lines (112 loc) · 3.81 KB
/
clubs.html
File metadata and controls
122 lines (112 loc) · 3.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Departments</title>
<link rel="stylesheet" href="clubs.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Header -->
<header>
<div class="header-left">
<div class="logo-title">
<img src="https://matrusri.edu.in/wp-content/uploads/2021/11/cropped-MECS-LOGO-192x192.jpg" alt="College Logo" class="college-logo">
</div>
<div>
<h1 class="institute-name">Matrusri Engineering College</h1>
<p class="tagline">An Autonomous Institution | Affiliated to Osmania University</p>
</div>
</div>
<nav class="main-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Login</a></li>
<li class="dropdown">
<a href="#">About</a>
<div class="dropdown-content">
<a href="about.html">About the Institution</a>
<a href="#">Management</a>
<a href="#">Administration</a>
<a href="department.html">Departments</a>
<a href="#">Admission</a>
<a href="#">Clubs</a>
</div>
</li>
</ul>
</nav>
</header>
<section class="clubs-section">
<h2>College Clubs</h2>
<div class="club-grid">
<div class="club-box">
<span class="club-name">Coding Club</span>
<span class="arrow">→</span>
</div>
<div class="club-box">
<span class="club-name">Cultural Club</span>
<span class="arrow">→</span>
</div>
<div class="club-box">
<span class="club-name">Robotics Club</span>
<span class="arrow">→</span>
</div>
<!-- Add more club-boxes here -->
</div>
</section>
<footer class="site-footer">
<div class="footer-content">
<div class="footer-section">
<h3>Contact Us</h3>
<p>Matrusri Engineering College<br>
Saidabad, Hyderabad, Telangana<br>
Phone: +91-XXXXXXXXXX<br>
Email: info@matrusri.edu.in
</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="#">Admissions</a></li>
<li><a href="#">Departments</a></li>
<li><a href="#">Placements</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Follow Us</h3>
<p class="social-icons">
<a href="#"><i class="fab fa-facebook-f"></i> Facebook</a> |
<a href="#"><i class="fab fa-instagram"></i> Instagram</a> |
<a href="#"><i class="fab fa-twitter"></i> Twitter</a>
</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Matrusri Engineering College. All rights reserved.</p>
</div>
</footer>
<!-- JS for Accordion Toggle -->
<script>
const items = document.querySelectorAll('.accordion-item');
items.forEach(item => {
const header = item.querySelector('.accordion-header');
const icon = item.querySelector('.accordion-icon');
header.addEventListener('click', () => {
const open = item.classList.contains('active');
items.forEach(i => {
i.classList.remove('active');
i.querySelector('.accordion-icon').textContent = '+';
i.querySelector('.accordion-icon').classList.remove('rotate');
});
if (!open) {
item.classList.add('active');
icon.textContent = '−';
icon.classList.add('rotate');
}
});
});
</script>
</body>
</html>