forked from PurePro4561/Stickman-Hook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 800 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Stickman Hook</title>
<link rel="icon" href="/favicon.ico">
<link rel="shortcut icon" href="/favicon.ico">
<script type="text/javascript" src="/js/main.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
<style>
html,
body {
position: absolute;
top: 0px;
left: 0px;
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
width: 100vw;
height: 100vh;
background-color: black;
}
canvas {
width: 100%;
}
</style>
<script src="poki3.js"></script>
</head>
<body>
<script src="bundle.js"></script>
</body>
</html>