A good answer might be:

<html>
<body>
<h3>Here is an Exciting Applet</h3>
<p>
And what an exciting applet it is.
With a width of 300 pixels, and a height of 150 pixels,
this applet has it all.
</p>
<applet code="AnotherHello.class"  width=300 height=150>
</applet>
</body>
</html>

Other HTML Tags

You do not have to put tags in column one like the example did, but doing so is often convenient. The following would work the same:

<html><body>
<h3>Here is an Exciting Applet</h3><p>
And what an exciting applet it is. With a width of 300 pixels, and a height of 150 pixels,
this applet has it all.</p>
<applet code="AnotherHello.class"  width=300 height=150> </applet>
</body></html>

Here is a list of more tags mean (for even more tags search the web or see the appendix).

<html> mark the START of a "html" file. These should be the FIRST characters in the file.
</html> mark the END of a "html" file. These should be the LAST characters in the file.
<head> mark the start of the head of the file. The head of the file contains descriptions and declarations that are not supposed to be directly visible on the web page.
</head> mark the end of the head of the file.
<title> give a title to the entire page (the web browser can use the title for whatever purpose it wishes.) This should be in the head section of the page.
</title> end of the title.
<body> mark the start of the body of the file. The body of the file is the main part that is visible on the monitor screen.
</body> mark the end of the body of the file.
<hr> a horizontal rule: a line completely across the screen. There is no matching tag.

Here is a larger version of the web page that uses all these tags:

<html>
<head>
<title>A Boring Title</title>
</head>

<body>
<h3>Here is an Exciting Applet</h3>
<p>
And what an exciting applet it is.
With a width of 300 pixels, and a height of 150 pixels,
this applet has it all.
</p>
<applet code="AnotherHello.class"  width=300 height=150>
</applet>
<hr>
</body>
</html>

If you forget to include the match to a tag, you will probably get very strange results. For example, if you forget the match to the <h3> tag, it will look like you are asking for a heading that consists of the rest of the file. This will look odd.

QUESTION 10:

What do you suppose happens if you forget the match to a <head> tag?