-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
40 lines (35 loc) · 1.21 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
<html>
<head>
<title>RuneScape 2</title>
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<meta name="viewport" content="width=device-width, initial-scale = 0.86, maximum-scale=3.0, minimum-scale=0.86">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<style>
body {
margin: 0;
padding: 0;
color: #fff;
background-color: #000;
}
canvas {
display: block;
margin: 0 auto;
touch-action: none;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
outline: none;
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
z-index: -1;
}
</style>
</head>
<body>
<canvas id="canvas" width="789" height="532"></canvas>
</body>
</html>