PPT Slide
Special types of containers
-- embedded inside HTML document, between tags:
<HTML>
<APPLET code = “MyApplet.class”
WIDTH = 400 HEIGHT = 300>
</APPLET>
</HTML>
Applets have no main(String arg[]) method
-- supplied by browser instead
/* a main() ‘substitute’ */
public void paint (Graphics g)