30 lines
1.3 KiB
HTML
30 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>River of DOOM!!! - An HTML5 "tunnel" game by Josh Sherman for 10k Apart</title>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js"></script>
|
|
<script type="text/javascript" src="river.js"></script>
|
|
</head>
|
|
<body>
|
|
<canvas width="400" height="500"></canvas>
|
|
<div>
|
|
<header>
|
|
<h1>River of DOOM!!!</h1>
|
|
<h2>Built by <a href="http://joshtronic.com">Josh Sherman</a> for <a href="http://10k.aneventapart.com/">10k Apart</a></h2>
|
|
<h3>Inspired by my time enjoying “Tunnel” games and <a href="http://ski.ihoc.net/">SkiFree</a></h3><br />
|
|
<h4>
|
|
<span>Directions courtesy of my 3-year-old daughter:</span><br />
|
|
“You don’t want to get the boat in the grass”<br />
|
|
<span>Also be weary of rocks, crocs and blinding fireflies!</span>
|
|
</h4>
|
|
<div>High Score: <span id="high-score">0</span></div>
|
|
</header>
|
|
<footer>
|
|
<div>Current Score: <span id="current-score">0</span></div>
|
|
<input type="checkbox" /> “Kid” Mode (a/k/a <a href="http://en.wikipedia.org/wiki/God_mode">IDDQD</a>)<br /><br />
|
|
<a href="http://github.com/joshtronic/river-of-doom">Like the game? Get the code!</a>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|