Explain the complete syntax for using the Applet tag.
The <Applet> tag has the following attributes:
Code: To specify the .class
Width: To indicate the width of the applet window at first time loading.
Height: To indicate the height of the applet window at first time loading.
Example: <Applet code=RegistrationForm.class width=400 height=400>
Welcome to the world of applets
</Applet>
Syntax for using the Applet tag <applet code="Applet123.class" width=50 height=50>
</applet>
The browser is informed to load the applet whose compiled code is in Applet123.class and to set the size of the applet to 50x50 pixels.