|
|
Tags |
|
| A tag is anything between < and >. | |
| Consider the following list: | |
| <html> | is a tag |
| <head> | is a tag |
| [head] | is not a tag |
| Hopefully that gives you a better understanding of tags and what they are. | |
<HTML> | |
| The <HTML> tag is what tells the brower that you are going to be entering HTML code. | |
| In order to tell the browser that you are not going to use HTML any more you would use the </HTML> tag. | |
|
For example: | |
<HEAD> | |
| The <HEAD> tag has all the information that is not visible on your page. | |
| Conversely, the </HEAD> tag stops the information from being read as invisible information that makes your page do stuff. | |
|
You would put the <HEAD> and </HEAD> tags inside of the
<HTML> and </HTML> tags. Your code should look something
like this: |
<BODY> | |
| The <BODY> and </BODY> tags indicate to the browser that anything inside of them should be displayed on your page. | |
|
For example: | |
|
Most of your code will be in the <BODY> tag, very little if any will appear in the <HEAD> tag. | |
| Now we're getting into the fun stuff! |
|
|
|