HTML MADE EASY

LEARNING HOW HTML WORKS



 
 

ESSENTIAL TAGS



 
 
There are four sets of tags that need to go in every HTML document.
These are: 
  • <HTML></HTML>
  • <HEAD></HEAD>
  • <TITLE></TITLE>
  • <BODY></BODY>

TAGS AND DEFINITIONS
TAG DEFINITION
<HTML></HTML> This tag identifies the beginning and end of an HTML document.
<HEAD></HEAD> This is where all the important information about the document goes.
<TITLE></TITLE> What ever is in this tag appears in the title bar of your browser. 
<BODY></BODY> This tag is what contains all the information on your page. All your graphics links and plain text must go between the <BODY> and </BODY> tags.


SAMPLE PAGE

<HTML>
<HEAD>
<TITLE>This is Where your title goes</TITLE>
</HEAD>
<BODY>
This is the section where everything goes into your document!
</BODY>
</HTML>

Return to the Exercise Page

Return to the Home Page

Return to the Class Page