-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (39 loc) · 1.82 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="fonts/stylesheet.css">
<link rel="stylesheet" href="style.css">
<script src="vendor/confettiKit.js"></script>
<script src="js/index.js"></script>
<title>Computer Science in 10 Minutes</title>
</head>
<body>
<main class="main">
<div class="step is-active" id="begin">
<h1><strong class="cs">C</strong>omputer Science in 10 minutes</h1>
<p>A short introduction in form of Trivia Questions.</p>
<a href="#" onclick="begin();">let's begin</a>
</div>
<div class="questions" id="questions-div">
</div>
<div class="step" id="end">
<h2 id="end-title">You got 1 of 1 Questions Correct</h2>
<p id="end-message">Good Job</p>
<a onclick="return reload();">Try again</a> | <a onclick="about();">About</a>
<div class="about">
MIT License © 2019-2020 Made with ❤️ by <a href="https://twitter.com/letsandeepio" target="_blank">Sandeep</a> in beatiful Toronto.
CSS Styles & Layout Ideas inspired from <a href="https://jgthms.com/javascript-in-14-minutes/" target="_blank">Javascript in 14 minutes</a> by <a href="https://jgthms.com/" target="_blank">Jeremy Thomas</a>.
Questions API powered by <a href="https://opentdb.com/" target="_blank">The Open Trivia Database</a>
Confetti(.js) Provided by <a href="https://codecanyon.net/item/confettikit-confetti-explosion/21468095" target="_blank">kitCreations</a>
</div>
</div>
</main>
<aside class="sides" id="scoreboard">
<span id="score"></span></span><span>|</span><span id="total-questions"></span>
</aside>
<div style='height: 70vh'><!--to enable proper scorll behaviour of questions div--></div>
</body>
</div>
</html>