A hello world Applet

	 <APPLET CODE=HelloWorld.class WIDTH=50 HEIGHT=50>
	 </APPLET>


An Applet that takes a string parameter

	 <APPLET CODE=TakesParam.class WIDTH=200 HEIGHT=50>
		<PARAM name="string" value="this string was passed from HTML">
	 </APPLET>