How to link to Projectile Motion

There are a few ways to link to the applet. First, you could just put a link to the page on our server. The URL is http://www.phys.virginia.edu/classes/109N/more_stuff/Applets/ProjectileMotion/jarapplet.html

Another option is to make your own web page on your server that loads the applet. An example follows.

<html><head><title>My Class Page</title></head><body>
<H1>Projectile Motion</H1>
Put your own class lesson up top.  Below will be the applet.
<applet codebase="http://galileo.phys.virginia.edu/~ajd2m/applets/" ARCHIVE="projectile.jar" code="ProjectileApplet.class" width=500 height=400>
</applet>
<br><A HREF="http://www.phys.virginia.edu/classes/109N/more_stuff/Applets/ProjectileMotion/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><head><title>My Class Page</title></head><body>
<H1>Projectile Motion</H1>
Put your own class lesson up top.  Below will be the applet.
<applet codebase="." ARCHIVE="projectile.jar" code="ProjectileApplet.class" width=500 height=400>
</applet>
<br><A HREF="http://www.phys.virginia.edu/classes/109N/more_stuff/Applets/ProjectileMotion/applet.html">About</A>
</body></html>