forked from Pratyaksha-047/Decode_Mysteries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pg1-instructions.html
104 lines (103 loc) · 4.09 KB
/
pg1-instructions.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<title>Decode Mysteries</title>
<link rel="stylesheet" type="text/css" href="css/instructionsstyle.css" />
<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=Arimo:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet"
/>
</head>
<body oncontextmenu="return false;">
<main>
<section class="hero">
<img src="img/bg2.jpeg" alt="Decoding Mysteries" class="hero-img" />
<div class="bg-overlay"></div>
</section>
<section class="instructions">
<div class="instructions--main">
<img src="img/tv7.png" alt="" class="tv--img" />
<div class="instructions--text">
<p class="paragraph">
<strong style="font-size: 35px">S Y N O P S I S</strong
><br /><br />Welcome Agent XI, After looking at your elite
profile, Innerve has recruited you to keep your nation security
intact. Complete the secret mission kill or be killed in
challenging spy stealth operation. <br /><br />
You have recieved an intel that your city is going to be bombed in
next 2 hours and the sleeper cells are hiding in an abandoned
mansion in the centre of the city. The mansion is old and
decrepit, with no signs of an entrance anywhere. A menagerie of
items are scattered along the premises, stacked into heaps and
piles of junk you don't dare take a second look at. Each room is a
labyrinth of mysterious cases that will intrigue any agent worth
his salt. Your mission is to solve 3 tricky levels of unraveling
hidden object scenes where you will have to find objects and crack
the Machine learning questions in order to move forward and reach
the head of the sleeper cell. You will receive further
instructions as soon as you reach your destination.<br /><br />
So gear up agent, clock is ticking.You only have 2 hours to save
the city, you better hurry.
</p>
</div>
</div>
</section>
<section>
<p>
<a href="pg3-popup.html" class="link">
<button type="button" class="button2">Next</button></a
>
</p>
</section>
</main>
<!--<script>
$(document).ready(function () {
$("*").dblclick(function (e) {
e.preventDefault();
});
});
$(document).keydown(function (event) {
if (event.keycode == 123) {
return false;
} else if (event.ctrlkey && event.shiftkey && event.keyCode == 73) {
return false;
}
});
document.addEventListener("contextmenu", event == event.preventDefault());
</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;
}
};
$("#").on("selectstart", function (event) {
event.preventDefault();
});
</script>
</body>
</html>