Navy SEALs
SEAL Pics
SEAL Info
SEAL Training
Computer Programming
HTML
Cascading Style Sheets
Hall Of Fame
Programming Books
Free Downloads
Other Areas
Cool Links
Sign/View My Guestbook
Site Map
About The Webmaster
Main Page

Free Magazine

Need Help?

GOAL
To answer questions about basic HTML tags and where they go.

QUESTIONS
  1. What is the first neccesary tag?
  2. What tag encompasses the <title> and <meta> tags?
  3. What is the last tag that should be in the document?
  4. What is the proper way to make a comment in an HTML document?
  5. What is the code for a webpage that simply has HI on the page and the title is HI?
ANSWERS
Now the answers can be found by selecting the area beneath this text.
1. <HTML>, though <!doctype> can be included, it isn't neccessary.
2. <HEAD>
3. </HTML>, though tags can come after that, they will be ignored.
4. <!-- comment goes here -->
5. <HTML><HEAD><TITLE>HI</TITLE></HEAD><BODY>HI</BODY</HTML>