-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
95 lines (85 loc) · 3.87 KB
/
index.html
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
<html>
<head>
<title>CCSU Opendata</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./css/index.css">
<link rel="preconnect" href="https://pi-club.netlify.app">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Code&display=swap" rel="stylesheet">
<script type="module" src="/js/index.js" defer></script>
</head>
<body>
<header>
<div id="logo">
<img src="https://pi-club.netlify.app/logos/black_on_white.svg" alt="PI Club Logo">
</div>
<div id="title">
CCSU<span>Opendata</span>
</div>
</header>
<main>
<section id="landing">
<section id="cta-container">
<div>
<h1>
Smarten up your<br>preparations
<div id="dots"></div>
<script type="text/javascript">
// generate (width * height) divs and populate them in the #dots element
const [width, height] = [8, 6]
const total = width * height
const dots = document.querySelector('#cta-container #dots')
dots.style.setProperty("--width", width)
dots.style.setProperty("--height", height)
for (let i = 0; i < (width * height); i++) {
dots.appendChild(document.createElement("div"))
}
</script>
</h1>
<p>Use the PI Club's statistically generated list of important topics to smarten up your exam preparations!</p>
<a href="/choose.html">Start Preparing!<span class="underline"></span></a>
</div>
</section>
<section id="illustration">
<div class="panel">
<div id="fader"></div>
<h2>
<span>BCA</span><span>/</span><span>101</span>
<span class="underline"></span>
</h2>
<ul>
<li title="Caley-Hamilton, Characterstic roots has 15 weightage on average">
<label for="q0">Caley-Hamilton, Characterstic roots</label><input checked type="checkbox" id="q0">
</li>
<li title="Check continuity has 15 weightage on average">
<label for="q1">Check continuity</label><input checked type="checkbox" id="q1">
</li>
<li title="Trace the curve has 15 weightage on average">
<label for="q2">Trace the curve</label><input checked type="checkbox" id="q2">
</li>
<li title="Taylor's theorem has 15 weightage on average">
<label for="q3">Taylor's theorem</label><input type="checkbox" id="q3">
</li>
<li title="Find cross and Dot product, Unit vector has 15 weightage on average">
<label for="q4">Find cross and Dot product, Unit vector</label><input type="checkbox" id="q4">
</li>
<li title="L' Hospital rule has 15 weightage on average">
<label for="q5">L' Hospital rule</label><input type="checkbox" id="q5">
</li>
<li title="Maximum and Minimum values has 15 weightage on average">
<label for="q6">Maximum and Minimum values</label><input type="checkbox" id="q6">
</li>
<li title="Maclaurins theorem has 11.25 weightage on average">
<label for="q7">Maclaurins theorem</label><input type="checkbox" id="q7">
</li>
<li title="Cramer's rule has 10 weightage on average">
<label for="q8">Cramer's rule</label><input type="checkbox" id="q8">
</li>
</ul>
</div>
</section>
</section>
</main>
</body>
</html>