//   Author: Brian C. Hoffman
//     File: HelloApplet.java
// Abstract: This is a standard "Hello World" applet that uses the drawString 
//           method of the Graphics class to display its message to the world.
//          
//  Revision History:      	Date (Due Date)	   Who	 Description
// -----------------------------------------------------------------------------
//		                    2/12/03            BCH	 Initial Release
//
import java.awt.*;
import javax.swing.*;

public class HelloApplet extends JApplet
{   
    // draw graphics 
    public void paint(Graphics g)
    {
        super.paint(g);
        g.setFont(new Font("SanSarif", Font.BOLD, 32));
        g.drawString("Hello World!", 20, 50); 
    }
}
    

