-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
90 lines (80 loc) · 4 KB
/
index.htm
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
<html>
<head>
<title>XENOMORPH</title>
<link rel="icon" type="image/ico" href="1.ico" sizes="45x48">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script src="js/skel.min.js" ></script>
<script src="js/init.js"></script>
<script src="https://kit.fontawesome.com/5fc8d7455c.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/glitch.css">
</head>
<body class="loading">
<div id="wrapper">
<video autoplay="1" loop="" id="player">
<source src="vid/6.mp4"type="video/mp4">
</video>
<div id="overlay"></div>
<div id="main">
<header id="header">
<span id="doc_time">Time</span>
<h1>XENOMORPH</h1>
<p> • xeno • </p>
<nav>
<ul>
<li><a href="https://trovo.live/xenomorphx" target="_blank" class="fa-solid fa-gamepad" aria-hidden="true"></a></li>
<li><a href="https://vk.com/ggforp" target="_blank" class="fa fa-vk"></a></li>
<li><a href="http://steamcommunity.com/id/xenomorphx/" target="_blank" class="fa fa-steam-square" aria-hidden="true"></a></li>
<li><a href="https://www.instagram.com/xe9omorph/" target="_blank" class="fa fa-instagram" aria-hidden="true"></a></li>
</ul>
<ul>
<marquee aligt="center" scrollamount="100" width="540" style="width:540px;"> • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •</marquee>
</ul>
<p>⊹MMHVH KING⊹</p>
<ul>
<marquee aligt="center" scrollamount="100" width="540" style="width:540px;"> • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • •</marquee>
</ul>
</nav>
</header>
</div>
</div>
</body>
<script type="text/javascript">
function clock() {
var d = new Date();
var hours = d.getHours();
var minutes = d.getMinutes();
var seconds = d.getSeconds();
if (hours <= 9) hours = "0" + hours;
if (minutes <= 9) minutes = "0" + minutes;
if (seconds <= 9) seconds = "0" + seconds;
date_time = hours + ":" + minutes + ":" + seconds;
if (document.layers) {
document.layers.doc_time.document.write(date_time);
document.layers.doc_time.document.close();
}
else document.getElementById("doc_time").innerHTML = date_time;
setTimeout("clock()", 1000);
}
</script>
<script type="text/javascript">
clock();
</script>
</script>
<script>
document.onkeydown = function(e) {
if (e.ctrlKey && (e.keyCode === 67 || e.keyCode === 86 || e.keyCode === 85 || e.keyCode === 117)) {//Alt+c, Alt+v will also be disabled sadly.
}
return false;
};
</script>
<script>
function click() {
if (event.button==2||event.button==3) {
oncontextmenu='return false';
}
}
document.onmousedown=click
document.oncontextmenu = new Function("return false;")
</script>
</html>