Write a program to show “Hello Java” in explorer using Applet in Java

Write a program to show “Hello Java” in explorer using Applet in Java

Java file code:
import java.awt*;
import java.applet*;

public class simplespple extends Applet {
            public void paint(Graphics g) {
                        g.drawString ("A simple applet", 20, 20);
            }
            }
Save the above code in the file named Main,java

HTML file code:
<HTML>
<HEAD></HEAD>
<BODY>
<div >
<APPLET CODE="Main.class" WIDTH="800" HEIGHT="500">
</APPLET>
</div>
</BODY>
             </HTML>


Post a Comment