<html>
<head>
<title> A Simple Program </title>
</head>
<body>
Here is the output of my program(applet code):<br />
<applet code="HelloWorld.class" width="300" height="100">
</applet>
<hr />
Here is the output of my program(object):<br />
<object codetype="application/java"
code ="HelloWorld.class"
width="300"
height="100">
</object>
<hr />
Here is the output of my program(object classid):<br />
<object classid="java:HelloWorld.class"
width="300"
height="100">
</object>
<hr />
</body>
</html>