-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyqs.html
More file actions
90 lines (80 loc) · 2.79 KB
/
pyqs.html
File metadata and controls
90 lines (80 loc) · 2.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Clubs - Bitdsyll & Stuff</title>
<link rel="stylesheet" href="pyqs.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
</head>
<body>
<header>
<a href="index.html" class="logo">
<img src="images/logo.jpeg" alt="Bitdsyll Logo" />
<h1>Bitdsyll & Stuff</h1>
</a>
<nav>
<div class="dropdown">
<a href="materials.html" class="dropbtn">Materials</a>
</div>
<a href="clubs.html">Clubs & Societies</a>
<a href="calendar.html">Calendar</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<div class="pyqs-header">
<i class="fas fa-question-circle"></i> Previous year question-papers!!
</div>
<!-- Dynamic Container -->
<div class="pyqs-container" id="pyqs-container">
<!-- JavaScript will insert pyq cards here -->
</div>
<footer class="footer-container">
<div class="footer-top">
<p>© 2025 Bitdsyll & Stuff | All rights reserved</p>
</div>
<div class="footer-bottom">
<div class="credit-section">
<p>Website & Design Credits:</p>
<div class="credit-buttons">
<div class="credit-btn">
@FizaSiddique
<div class="popup-card">
<strong>Connect with Fiza:</strong>
<div class="social-links">
<a href="https://www.instagram.com/fizasi.que/" target="_blank">
<i class="fab fa-instagram"></i> Instagram
</a>
<a href="https://www.linkedin.com/in/fiza-siddique-82080b251/" target="_blank">
<i class="fab fa-linkedin"></i> LinkedIn
</a>
</div>
<hr>
<p>Website creation & development.</p>
<p>Crafted with ❤️ by Fiza for Bitdsyll & Stuff.</p>
</div>
</div>
<div class="credit-btn">
@SujalKumar
<div class="popup-card">
<strong>Connect with Sujal:</strong>
<div class="social-links">
<a href="https://www.instagram.com/sujalchoudhary_1/" target="_blank">
<i class="fab fa-instagram"></i> Instagram
</a>
<a href="https://linkedin.com/in/sujal-kumar-75a5b3322" target="_blank">
<i class="fab fa-linkedin"></i> LinkedIn
</a>
</div>
<hr>
<p>Creative inspiration & support.</p>
<p>Design muse for Bitdsyll & Stuff.</p>
</div>
</div>
</div>
</div>
</div>
</footer>
<script src="pyqs.js"></script>
</body>
</html>