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 TagsYou 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: Here is a list of what various tags mean (for more tags, search the web or see the appendix of your textbook.)<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 larger version of the web page that uses all these tags: 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<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> <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
|