http://www.phys.virginia.edu/classes/109N/more_stuff/Applets/ness/nessplay.html
Another option is to make your own web page on your server that loads the applet. An example follows.
<HTML><BODY><TITLE>Page Title</TITLE></HEAD><BODY> <H1>Title of My page</H1> Here I put text for my class. <APPLET codebase="http://galileo.phys.virginia.edu/~ajd2m/applets/" code="IntroApplet.class" ARCHIVE="ness.jar" width=400 height=200> <param name=boardsizex value=40> <param name=boardsizey value=40> <param name=mass value=0.5> <param name=upcolor value=blue> </APPLET><BR> <a href="http://www.phys.virginia.edu/classes/109N/more_stuff/Applets/ness/applet.html">About</A> </body></html>
Lastly, you can download the applet to your own server. Just download the jar file and change the
codebase
tag in the HTML page so it points to your local directory. If the
HTML page is in the same directory as the jar, it would look as follows.
<HTML><BODY><TITLE>Page Title</TITLE></HEAD><BODY> <H1>Title of My page</H1> Here I put text for my class. <APPLET codebase="." code="IntroApplet.class" ARCHIVE="ness.jar" width=400 height=200> <param name=boardsizex value=40> <param name=boardsizey value=40> <param name=mass value=0.5> <param name=upcolor value=blue> </APPLET><BR> <a href="http://www.phys.virginia.edu/classes/109N/more_stuff/Applets/ness/applet.html">About</A> </body></html>