How To Put A Running Version Of Your Project On The Web
Place all your sound and image files in your project folder, and under BlueJ's "Project" Folder, select "Make a jar file". Name it The same as your applet's class. For example if Hockey.java is the class that extends Applet (or JApplet), Name the Jar file Hockey.jar
Write a HTML file like this one:
<html>
<head>
<title>Hockey Applet</title>
</head>
<body>
<h1>Hockey Applet</h1>
<h2>by Eni and Erik</h2>
<hr>
<applet code="Hockey.class"
width=500
height=500
archive="Hockey.jar"
alt="Your browser understands the <APPLET> tag but isn't running the applet, for some reason."
>
Your browser is ignoring the <APPLET> tag!
</applet>
<hr>
</body>
</html>
and name it "Hockey.html" or "Hockey.htm"
Post the jar file and the Html file to your web server.
