How to make a Java Applet:

(this is a simple way to copy a java applet and use it on your website.)

    1. Go to an existing java applet and save the text file.

    2. Compile the text file so that it can be read. There are different ways to compile a file using different programs. (I like TextPad) This file is to be saved as a .class. (you will now have a .class and a .java

    3. After the file is compiled, go into your webpage editor (Frontpage) and go to a new page.

    4. You will need to construct a HTML sequence like the following:

 <HTML>
<head><title>
FILE.java</title></head>
<body>
<applet code =
"FILE.class"
width=300 height=200>
</applet>
<hr>
<a href=
"FILE.java">The source.</a>
</body>
</HTML>

   5. After you complete this, save this file as a .html.

   6. Go to your webpage and create a link to this file and your java applet will show up. (Make sure all the files are

transferred to the unix machine using FTP.