Hello,
This tutorial will explain to you how to embed Java applets into html documents.
First of all paste this code into the body area of your webpage:
<applet code="APPLET.class" width="100%" height="100%">
This webpage uses java, but your browser does not support it.
</applet>
Now i will explain what each part does and how to change it.
code="APPLET.class"
this is where you type in the directory and the name of your .class file for the java applet, change it to the class file of your applet.
width="100%" height="100%"
this is where you determine the width and height of your java applet when its shown in the webpage, at the moment it will take up all of the wepage as it is set to 100%, but you can change this to just the amount of pixels you want it to be/ whatever percentage you want!
This webpage uses java, but your browser does not support it.
in here is where you type the message that will be shown if the browser that is veiwing the webpage does not have Java support.
Report any errors you find.
Jordan, Doodle-Flash.