Created asteroids.html

asteroids.html is a model for inserting the Asteroids game applet into a web page
This commit is contained in:
2012-04-15 23:02:46 -04:00
parent 365d465271
commit cc3800bdfe

23
asteroids.html Normal file
View File

@@ -0,0 +1,23 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en-US">
<HEAD>
<TITLE> Asteroids </TITLE>
<h1> Asteroids </h1>
An Asteroids Clone by Rick Barrette
<br/>
</HEAD>
<BODY>
<applet width="800" height="500" code="com.RickBarrette.asteroids.GameApplet">
<param name="jnlp_href" value="Asteroids.jnlp">
</applet>
<br/>
<strong>Steering: </strong> [W] [A] [S] [D] or [Arrow] Keys
<br/>
<strong>Fire:</strong> [Space]
<br/>
<strong>Start/Pausee:</strong> [Enter]
<br/>
<strong>Hyper Jump:</strong> [H]
</BODY>
</html>