HTML MADE EASY

ESSENTIAL TAGS
| There are four sets of tags that need to go in every HTML document. |
These are:
|

| 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. |
