-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
20 lines (20 loc) · 751 Bytes
/
game.html
File metadata and controls
20 lines (20 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<!--[if lte IE 8]><meta http-equiv="X-UA-Compatible" content="chrome=1"/><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>Raindrops HTML5 videogame experiment</title>
<style>
html, body { margin: 0; padding: 0}
body { background:#000: text-align: center; cursor: crosshair}
canvas { background:#999 }
</style>
</head>
<body>
<canvas id="canvas" width="640" height="696" style="width:720px; height: 784px;">
[CANVAS NOT SUPPORTED BY YOUR WEB BROWSER
</canvas>
<script type="text/javascript" charset="utf-8" src="script.js"></script>
</body>
</html>