-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgame.html
More file actions
33 lines (31 loc) · 900 Bytes
/
game.html
File metadata and controls
33 lines (31 loc) · 900 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
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<meta charset="UTF-8">
<title>Saver</title>
<script type="module" src="./js/main.js"></script>
<style>
@font-face {
font-family: "game";
src: url("img/ARCADE.TTF"); }
/* @font-face { font-family: Delicious; font-weight: bold; src: url('myserver.com/fonts/Delicious-Bold.otf'); }*/
#screen {
width: 100%;
height: 100%;
overflow:hidden;
position: absolute;
margin: 0 auto;
}
body{
width: 100%;
height: auto;
overflow:hidden;
margin: 0 auto;
}
</style>
</head>
<body frameborder="0">
<canvas id="screen" width="1280" height="720" ></canvas>
</body>
</html>