Here is the code for the simple Applet.
	import java.applet.*;

	public class HelloWorld extends Applet {

		public void init() {}

		public String getHelloWorld() {
			return "Hello, World!";
		}

	}