HTML
Codes |
Explanation |
Optional? |
<HTML> |
This
line tells the computer the page is written in HTML |
No |
<HEAD> |
Marks
the start of the document header |
No |
<META HTTP-EQUIV="Content-Type"
CONTENT="text/html; charset=iso-8859-1"> |
A
tag telling which type of font was used by the creator
of the page |
Yes |
<META NAME="Author"
CONTENT="JayDax"> |
A
tag telling who the Author of the page was. |
Yes |
<META NAME="GENERATOR"
CONTENT="Mozilla/4.05 [en] (Win95; I) [Netscape]"> |
A
tag telling what program was used to prepare the page
- in this case Netscape Composer version 4.05 and Win
95 |
Yes |
<TITLE>
Knowledge Base
</TITLE> |
A
tag marking the start of the document title
Title text - appears at the top of your
browser
A tag marking the end of the title |
No |
</HEAD> |
A
tag marking the end of the document header |
No |