//HelloFancy2.java //Manjamba, 8/20 //A fancy version of the most basic applet with unique font import java.awt.*; import java.applet.*; public class HelloFancy2 extends Applet{ public void init(){ //create a label object called firstLabel Label firstLabel = new Label("Hello World!!", Label.RIGHT); //create a new font called fntMato Font fntMato = new Font ("SansSerif", Font.BOLD + Font.ITALIC, 20); //Apply the font to the label firstLabel.setFont(fntMato); //add the label object to the applet so that we can view it add (firstLabel); }// end init }// end applet