Created
March 13, 2013 22:23
-
-
Save AlphaGit/5156953 to your computer and use it in GitHub Desktop.
Example HTML from Arkanoid game.
(from https://github.com/AlphaGit/random-javascript/blob/master/arkanoid-canvas/arkanoid.html)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Arkanoid with canvas</title> | |
<link rel="stylesheet" type="text/css" href="arkanoid.css"> | |
<script type="text/javascript" src="arkanoid.js"></script> | |
</head> | |
<body onload="arkanoid.init();"> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment