-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (67 loc) · 2.64 KB
/
index.html
File metadata and controls
75 lines (67 loc) · 2.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content=" ">
<meta property="og:title" content="kuso. day">
<meta name="twitter:card" content="summary_large_image">
<meta name="viewport" content="width=device-width,user-scalable=no">
<link rel="apple-touch-icon" href="files/globe.ico">
<link rel="icon" href="files/globe.ico" type="image/x-icon">
<link rel="shortcut icon" href="files/globe.ico" type="image/x-icon">
<link rel="stylesheet" href="css/rain.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<audio loop="true" id="music" src="files/pokemon cerulean city.mp3" type="audio/mpeg"></audio>
<audio loop="false" id="breakingbad" src="files/waltuh.mp3" type="audio/mpeg"></audio>
</head>
<script>
// just go read the source on github
// links command, not hard.
document.addEventListener( 'contextmenu', event => event.preventDefault() );
document.onkeydown = function(e) {
if( e.keyCode == 123 )
return false; // disable F12 key
if( e.ctrlKey && e.shiftKey && e.keyCode == 73 )
return false; // disable CTRL+Shift+I combo
if( e.ctrlKey && e.shiftKey && e.keyCode == 74 )
return false; // disable CTRL+Shift+J combo
if( e.ctrlKey && e.shiftKey && e.keyCode == 75 )
return false; // disable CTRL+Shift+K combo
if( e.ctrlKey && e.keyCode == 85 )
return false; // disable CTRL+U combo
if( e.ctrlKey && e.shiftKey && e.keyCode == 67 )
return false; //disable CTRL+Shift+C
}
</script>
<body>
<div id="homepage" class="middle">
<div id="terminal">
<div id="terminal-header">
<div>
<div id="controls">
<div class="button green"></div>
<div class="button yellow"></div>
<a href="#" onclick="window.close( );"><div class="button red"></div></a>
</div>
<div id="title">day.out</div>
<image src="files/portal.gif" id="icon"/>
</div>
</div>
<div id="content">
<noscript><br>
<div>
<span class="red">root@day</span>:<span class="blue">~</span># ./nojs.sh
<p>Please enable JavaScript to use this site.</p>
</div>
</noscript>
</div>
</div>
<span class="taille"></span>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/jquery.nicescroll.min.js"></script>
<script src="js/script.js"></script>
<script src="js/AnimatedTitle.js"></script>
</body>
</html>