-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (38 loc) · 1.46 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
<html>
<head>
<title>Ludum Dare 37</title>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=VT323" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
<link href="main.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.16/webfont.js"></script>
<script src="https://pixijs.download/v4.2.3/pixi.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/howler/2.0.2/howler.min.js"></script>
<script src="data.js"></script>
<link rel="icon" type="image/icon" href="favicon.ico"/>
<link rel="icon" type="image/png" href="favicon.png"/>
</head>
<body>
<script>
WebFont.load({
google: {
families: ["VT323", "Source Sans Pro"]
}
});
</script>
<h1>Ludum Dare 37</h1>
<h2>Skip Work!</h2>
<div id="container"></div>
<script src="helper.js"></script>
<script src="loader.js"></script>
<script src="player.js"></script>
<script src="coworker.js"></script>
<script src="game.js"></script>
<p>You don't want to work</p>
<ul>
<li>hide from your coworkers</li>
<li>hide from your boss</li>
<li>don't forget to stamp your card every day</li>
</ul>
</body>
</html>