forked from Kritika75/TheCawnporeMag.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
277 lines (256 loc) · 9.57 KB
/
faq.html
File metadata and controls
277 lines (256 loc) · 9.57 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
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
<!-- faq.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Footer css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="assets/favicon.ico" type="image/x-icon">
<!-- -->
<link rel="stylesheet" href="faq.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="icon" href="assets/favicon.ico" type="image/x-icon">
<title>FAQ - The Cawnpore Magazine</title>
<!-- Back Button (Fixed Top-Left Corner) -->
<button
onclick="history.back()"
style="
position: fixed;
top: 70px;
left: 20px;
z-index: 1000;
background-color: #800000;
color: white;
border: none;
padding: 10px 16px;
border-radius: 6px;
cursor: pointer;
font-weight: bold;
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
"
>
← Back
</button>
</head>
<body class="faq-page">
<!-- Circles -->
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<script>
// Coordinates for the cursor
const coords = { x: 0, y: 0 };
const circles = document.querySelectorAll(".circle");
// Colors for the circles
const colors = [
"#ffb56b", "#fdaf69", "#f89d63", "#f59761", "#ef865e", "#ec805d",
"#e36e5c", "#df685c", "#d5585c", "#d1525c", "#c5415d", "#c03b5d",
"#b22c5e", "#ac265e", "#9c155f", "#950f5f", "#830060", "#7c0060",
"#680060", "#60005f", "#48005f", "#3d005e"
];
// Assign colors and initial position to each circle
circles.forEach(function (circle, index) {
circle.x = 0;
circle.y = 0;
circle.style.backgroundColor = colors[index % colors.length];
});
// Update the coordinates when the mouse moves
window.addEventListener("mousemove", function (e) {
coords.x = e.clientX;
coords.y = e.clientY;
});
// Animation function to move the circles
function animateCircles() {
let x = coords.x;
let y = coords.y;
circles.forEach(function (circle, index) {
// Update the position and scale of each circle
circle.style.left = x - 12 + "px";
circle.style.top = y - 12 + "px";
circle.style.scale = (circles.length - index) / circles.length;
circle.x = x;
circle.y = y;
// Get the next circle in the sequence
const nextCircle = circles[index + 1] || circles[0];
x += (nextCircle.x - x) * 0.15;
y += (nextCircle.y - y) * 0.15;
});
// Repeat the animation
requestAnimationFrame(animateCircles);
}
// Start the animation
animateCircles();
</script>
<div class="progress-container">
<div class="progress-bar" id="progressBar"></div>
</div>
<section class="header">
<nav role="navigation" aria-label="Main Menu">
<!-- Hamburger Icon -->
<i class="fa fa-bars" onclick="showMenu()"></i>
<!-- Sidebar Menu -->
<div class="nav-links" id="navLinks">
<!-- Close Icon -->
<i class="fa fa-times" onclick="hideMenu()"></i>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="submission.html">SUBMIT</a></li>
<li><a href="issue.html">ISSUE</a></li>
<li><a href="masthead.html">MASTHEAD</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="open-source.html">OPEN SOURCE</a></li>
</ul>
</div>
</nav>
</section>
<main>
<div class="heading-faq">
<h1>Frequently Asked Questions</h1>
</div>
<div class="faq">
<details>
<summary><strong>Q: Who can contribute?</strong></summary>
<p class="ans">A: Anyone with an interest in writing, art, or photography can contribute.</p>
</details>
</div>
<div class="faq">
<details>
<summary><strong>Q: What is the deadline for the submission?</strong></summary>
<p class="ans">A: Deadlines vary based on upcoming issues. Keep an eye on our website or social media pages for official announcements and submission windows.</p>
</details>
</div>
<div class="faq">
<details>
<summary><strong>Q: Do I retain rights to my work?</strong></summary>
<p class="ans">A: Yes! Contributors retain full rights to their work. By submitting, you only grant us permission to publish it on The Cawnpore Magazine platform (web and PDF formats).</p>
</details>
</div>
<div class="faq">
<details>
<summary><strong>Q: How to get involved as a developer or designer?</strong></summary>
<p class="ans">
A: We’re open to collaboration! You can contribute to our open-source website on GitHub by fixing bugs, improving UI, or suggesting new features.
Check out the
<a href="https://github.com/Kritika75/TheCawnporeMag.github.io.git" target="_blank">
<b><i>GitHub Repository</i></b>
</a>
to get started with the contributing guidelines.
</p>
</details>
</div>
</div>
<div class="ask">
<h3>Got more questions?</h3>
<span>Drop us an email at </span>
<div class="mail">
<a href="mailto:thecawnporemagofficial@gmail.com">@thecawnporemagofficial@gmail.com</a>
</div>
<p>— we're here to help!</p>
</div>
</main>
<div class="seperator">
<!-- seperating footer and main -->
</div>
<!-- Footer -->
<footer class="site-footer">
<a class="back-to-top" href="#">
<i class="fa-solid fa-chevron-up"></i>
</a>
<div class="footer-top">
<div class="footer-about">
<h3>The Cawnpore</h3>
<p>An independent magazine celebrating literary voices and untold stories.</p>
</div>
<div class="footer-links">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html" >Home</a></li>
<li><a href="about.html" target="_blank">About</a></li>
<li><a href="submission.html" target="_blank">Submit</a></li>
<li><a href="issue.html" target="_blank">Issue</a></li>
<li><a href="masthead.html" target="_blank">Masthead</a></li>
<li><a href="faq.html" target="_blank">FAQ</a></li>
<li><a href="open-source.html" target="_blank">Open Source</a></li>
</ul>
</div>
<div class="footer-contact">
<h3>Contact Us</h3>
<div class="social-icons" id = "footerContact">
<a href="mailto:thecawnporemagofficial@gmail.com" target="_blank">
<i class="fa-solid fa-envelope"></i>
</a>
<a href="https://www.instagram.com/thecawnporemagazine/?igsh=MWQzcXkxeGNkd29oeA%3D%3D" target="_blank">
<i class="fa-brands fa-instagram"></i>
</a>
<a href="https://www.linkedin.com/company/the-cawnpore-magazine/" target="_blank">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="https://x.com/TheCawnporeMag?s=09" target="_blank">
<i class="fa-brands fa-x-twitter"></i>
</a>
<a href="https://www.tumblr.com/thecawnporemagazine?source=share" target="_blank">
<i class="fa-brands fa-tumblr"></i>
</a>
</div>
</div>
<div class="subscription-box">
<h3>Subscribe to our Newsletter</h3>
<form action="/subscribe" method="post">
<input type="email" name="email" placeholder="Enter your email" required>
<button type="submit">Subscribe</button>
</form>
</div>
</div>
<div class="footer-bottom">
<p>Made with ♥ by Kritika Singh</p>
<p>© <span id="year"></span> THE CAWNPORE — ALL RIGHTS RESERVED</p>
</div>
</footer>
<script src="index.js"></script>
</body>
</html>
<!-- synced after conflict -->