-
Notifications
You must be signed in to change notification settings - Fork 0
/
pg8-questions2.html
122 lines (114 loc) · 4.35 KB
/
pg8-questions2.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Decode Mysteries</title>
<link rel="stylesheet" type="text/css" href="css/popup.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- FontAweome CDN Link for Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
</head>
<body oncontextmenu="return false;">
<main>
<header>
<nav>
<h1>LEVEL 2</h1>
</nav>
</header>
<!-- start Quiz button -->
<div class="start_btn"><button>Start Quiz</button></div>
<!-- Info Box -->
<div class="info_box">
<div class="info-title"><span>Some Rules of this Quiz</span></div>
<div class="info-list">
<div class="info">1. You will only have <span>3 minutes</span> per EDA question.</div>
<div class="info">2. Once you select your answer, it can't be undone.</div>
<div class="info">3. Do load the dataset and preprocess it before moving on to the questions</div>
<div class="info">4. You can't exit from the Quiz while you're playing.</div>
<div class="info">5. Link for the dataset used in the coming questions : <a href="https://drive.google.com/file/d/12JCiThUDPYhEcjuaCg-Q4TLpc8u_4QRf/view?usp=sharing" target="_blank"><font color="red">
Dataset</font></a></div>
<div class="info">6. Points will be awarded on the basis of your correct answers.</div>
</div>
<div class="buttons">
<button class="quit">Exit Quiz</button>
<button class="restart">Continue</button>
</div>
</div>
<!-- Quiz Box -->
<div class="quiz_box">
<header>
<div class="title">Quiz</div>
<div class="timer">
<div class="time_left_txt">Time Left</div>
<div class="timer_sec">180</div>
</div>
<div class="time_line"></div>
</header>
<section>
<div class="que_text">
<!-- Here I've inserted question from JavaScript -->
</div>
<div class="option_list">
<!-- Here I've inserted options from JavaScript -->
</div>
</section>
<!-- footer of Quiz Box -->
<footer>
<div class="total_que">
<!-- Here I've inserted Question Count Number from JavaScript --> -->
</div>
<button class="next_btn">Next</button>
</footer>
</div>
<!-- Result Box -->
<div class="result_box">
<div class="icon">
<i class="fas fa-crown"></i>
</div>
<div class="complete_text">You've completed the Quiz!</div>
<div class="score_text">
<!-- Here I've inserted Score Result from JavaScript -->
</div>
<div class="buttons">
<!-- <button class="restart">Replay Quiz</button> -->
<a href="pg9-level3.html"><button class="quit">Next Level</button></a>
</div>
</div>
<!-- <audio controls autoplay loop hidden>
<source src="bgm/bgm.mp3" type="audio/mpeg">
Your browser does not support the audio tag.
</audio> -->
</main>
<!-- Inside this JavaScript file I've inserted Questions and Options only -->
<script src="js/questions2.js"></script>
<!-- Inside this JavaScript file I've coded all Quiz Codes -->
<script src="js/l2-script.js"></script>
<script type="text/javascript">
/*$(document).ready(function() {
$('body').bind('cut copy paste', function (e) {
e.preventDefault();
})
$(".code").on("contextmenu", function(e) {
return false;
})
})*/
document.addEventListener('contextmenu', event => event.preventDefault());
document.onkeydown = function (e) {
if (event.keyCode == 123) {
return false;
}
if (e.ctrlKey && e.shiftKey && e.keyCode == "I".charCodeAt(0)) {
return false;
}
if (e.ctrlKey && e.shiftKey && e.keyCode == "J".charCodeAt(0)) {
return false;
}
if (e.ctrlKey && e.keyCode == "U".charCodeAt(0)) {
return false;
}
};
</script>
</body>
</html>
</html>