//HelloFancy.java //Manjamba, 7/01 //A fancy version of the most basic applet import java.awt.*; import java.applet.*; public class HelloFancy extends Applet{ public void init(){ //create a label object called firstLabel Label firstLabel = new Label("Hello World!!", Label.RIGHT); //add the label object to the applet so that we can view it add (firstLabel); }// end init }// end applet