-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex3.html
More file actions
31 lines (29 loc) · 708 Bytes
/
index3.html
File metadata and controls
31 lines (29 loc) · 708 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>Game</title>
</head>
<style>
video {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto;
min-height: 50%;
min-width: 50%;
}
</style>
<body style="margin:0; padding:0;">
<script src="./babel-polyfill.min.js"></script>
<script src="./vendor.bundle.js"></script>
<script src="./app.bundle.js"></script>
<script>
window.onerror = function(e) {alert(e)}
NewGames.startDebug();
</script>
</body>
</html>