Creating and HTML File:
Now that you know a little about HTML it is easy to create a simple HTML file to host your applet
<HTML>
< HEAD>
<TITLE >Sample HTML Document With Filled Box </TITLE>
</HEAD>
<BODY>
<H1> FilledBox Demo </H1>
<P>
<APPLET CODE ="FilledBox.class" WIDTH =50 HEIGHT =50>
<PARAM NAME =color VALUE= "blue">
</APPLET>
</BODY>
</HTML>
you can create this file through simply typing it into a text editor. Save the file as Filled Box.html. HTML files could be named anything you such as, although it is general practice to name them after the applets they host.