-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (20 loc) · 755 Bytes
/
Copy pathindex.html
File metadata and controls
23 lines (20 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Tapper Root Beer</title>
<link rel="stylesheet" href="css/base.css" type="text/css" />
<link href="http://fonts.googleapis.com/css?family=Bangers' rel='stylesheet' type='text/css">
<meta name="viewport" content="width=device-width, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
</head>
<body>
<div id="container">
<canvas id="game" width="512" height="480"></canvas>
</div>
<script src="src/engine.js"></script>
<script src="src/game.js"></script>
<script src="src/entities.js"></script>
</body>
</html>