In your public_html, create
sub-directories for each applet, e.g.
In that directory put the HelloWorld.java,
HelloWorld.class and
HelloWorld.html files.
From your Java
homepage create links to each applet html page so the instructor
can run and
examine the applet (and to download standalone application code).
On your home page:
.
<p> Applet exercises for course:
<br>
<a href="hello/HelloWorld.html">
Applet 1 </A>
.
.
In the applet add a line to provide
a link to the source code.
<HTML>
<HEAD>
<TITLE> Applet Exercise 1</TITLE>
</HEAD>
<BODY>
<APPLET CODE="HelloWorld.class"
WIDTH=150 HEIGHT=50>
</APPLET>
<A href="HelloWorld.java">
Source text </A>
</BODY>
</HTML>