/*
 * Applet.java
 *
 * Created on November 22, 2003, 8:42 PM
 */

/**
 *
 * @author  Berny
 */
public class HelloWorld extends java.applet.Applet {
    
    /** Initialization method that will be called after the applet is loaded
     *  into the browser.
     */
    Font f = new Font("TimesRoman"'Font.BOLD,36);
    public void init()
    {setBackground(Color.white);
    }
    public void paint(java.awt.Graphics g)
    {g.drawString("HelloWorld!", 100, 25);
    }
}