-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.03 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
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Elm Tetris</title>
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<style>
div {
font-family: 'Press Start 2P', cursive;
}
svg {
background-color: black;
display: block;
margin: auto;
}
.level {
float: left;
}
.score {
float: right;
}
.instructions {
font-size: 10px;
text-align: center;
margin-top: 20px;
}
</style>
</head>
<body>
<div id="main"></div>
<script src="elm.js"></script>
<script>
var node = document.getElementById('main');
var app = Elm.Main.embed(node);
</script>
</body>
</html>