APPLETS

1. Create an applet showing the string "Hello World" which is embedded in the HTML page.

            import java.applet.*;
            import java.awt.*;
            public class HelloWorld extends Applet{
                public void paint(Graphics g)
                {
                    g.drawString("Hello World!", 100, 100);
                }
            }
            
             /* 
             
            */
        

OUTPUT

            hello world