-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmembers.html
More file actions
47 lines (44 loc) · 1.42 KB
/
Copy pathmembers.html
File metadata and controls
47 lines (44 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Team - ExploitX</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<nav class="navbar">
<div class="nav-logo">
<i class="fas fa-shield-alt"></i>
<span>ExploitX</span>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="members.html" class="active">Members</a></li>
<li><a href="events.html">Events</a></li>
</ul>
<div class="nav-music">
<i class="fas fa-music"></i>
</div>
</nav>
<main>
<section id="members" class="section page-section">
<h2 class="section-title">Our Team</h2>
<div class="cards-container" id="membersContainer"></div>
</section>
</main>
<footer>
<p>© <span id="currentYear"></span> ExploitX Tech Club. All rights reserved.</p>
</footer>
<script src="script.js"></script>
<script>
// Load only members on this page
window.addEventListener('DOMContentLoaded', () => {
loadImagesConfig().then(() => {
loadMembers();
});
});
</script>
</body>
</html>