// simple applet: include this in your html file
// use appletviewer to view through the html, or use your browser

import java.awt.*;
import java.applet.*;

public class HelloWorldApp extends Applet {

	public void init () {
		setBackground (Color.cyan);
	}
	public void paint (Graphics g) {
		g.drawString ("Hello World!!", 10,10);
		showStatus ("Applet Working!");
	}
   
}

