-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 892 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
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<title>2048 | Game</title>
<style type="text/css">
body {
/* background: #000000; */
padding: 0px;
margin: 0px;
background-image: url(assets/background.png);
background-size: cover;
}
canvas {
display: block;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
@font-face {
font-family: font1;
src: url('assets/PressStart2P-Regular.ttf');
font-weight: 400;
font-weight: normal;
}
</style>
</head>
<body>
<div style="font-family: font1; position: absolute; left:-1000px; visibility:hidden;">.</div>
<script src="src/main.js" type="module"></script>
</body>
</html>