-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphysics.html
More file actions
80 lines (79 loc) · 3.51 KB
/
physics.html
File metadata and controls
80 lines (79 loc) · 3.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Solvr - Physics</title>
<link rel="stylesheet" href="styles/physics-style.css">
<link rel="stylesheet" href="global-styles.css">
<link rel="icon" href="assets/favicon.svg" type="image/svg+xml">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap" rel="stylesheet">
<!-- 100% privacy-first analytics -->
<script data-collect-dnt="true" async src="https://scripts.simpleanalyticscdn.com/latest.js"></script>
<noscript><img src="https://queue.simpleanalyticscdn.com/noscript.gif?collect-dnt=true" alt="" referrerpolicy="no-referrer-when-downgrade"/></noscript>
</head>
<body>
<!-- <div class="loader-overlay" id="loaderOverlay">
<img src="loader.svg" class="loader-img" alt="Loading..."/>
<div class="loader-text">Loading...</div>
</div> -->
<nav class="navbar">
<img src="assets/logo.svg" class="logo-img" alt="Logo">
<a href="index.html" class="logo-text">Solvr.</a>
<a href="statistics.html">Statistics</a>
</nav>
<main class="container">
<h1>Cambridge IGCSE Physics</h1>
<p>Select the parameters for your MCQs:</p>
<div class="section">
<h2>Year</h2>
<div class="button-group" id="year-group">
<button class="option-btn year-btn" data-year="2023">2023</button>
<button class="option-btn year-btn" data-year="2024">2024</button>
<button class="option-btn disabled" disabled data-year="2025">2025</button>
</div>
</div>
<div class="section">
<h2>Month</h2>
<div class="button-group" id="month-group">
<button class="option-btn month-btn" data-month="m" data-name="Feb/March">Feb/March</button>
<button class="option-btn month-btn" data-month="s" data-name="May/June">May/June</button>
<button class="option-btn month-btn" data-month="w" data-name="Oct/Nov">Oct/Nov</button>
</div>
</div>
<div class="section">
<h2>Level</h2>
<div class="button-group" id="level-group">
<button class="option-btn level-btn" data-level="Core">Core</button>
<button class="option-btn level-btn" data-level="Extended">Extended</button>
</div>
</div>
<div class="section">
<h2>Variant</h2>
<div class="button-group" id="variant-group">
<button class="option-btn variant-btn" data-variant="1">1</button>
<button class="option-btn variant-btn" data-variant="2">2</button>
<button class="option-btn variant-btn" data-variant="3">3</button>
</div>
</div>
<button class="submit-btn" id="start-btn">Start</button>
</main>
<script src="scripts/physics-script.js"></script>
<footer class="footer">
<p>Built with <span class="heart">❤️</span> by <a href="https://github.com/arnavravinder" target="_blank" rel="noopener" style="color:#76ABAE;">Arnav</a></p>
</footer>
<!--
<script>
document.addEventListener('DOMContentLoaded', () => {
setTimeout(() => {
const loader = document.getElementById('loaderOverlay');
if (loader) {
loader.remove(); // Completely remove the loader from the DOM
}
}, 500);
});
</script>
-->
</body>
</html>