-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (22 loc) · 820 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="sty/normalize.css">
<link rel="stylesheet" href="sty/base.css">
<script src="scr/main.js"></script>
</head>
<body>
<div id="gamearea" class="gamearea">
<div class="gamelayer layer-background"></div>
<div id="layer-movement" class="gamelayer layer-movement"></div>
<div class="gamelayer layer-anti-movement"></div>
<div class="gamelayer layer-static-elements"></div>
<div class="gamelayer layer-interactable-elements"></div>
<div class="gamelayer layer-foreground"></div>
<div class="gamelayer layer-interface"></div>
</div>
</body>
</html>