Basic Elements on Every Page


Three tags <HTML>, <HEAD> and <BODY>, are used to describe the overall structure of the document, identify your document to the browser and provide some information about the document (who wrote it, etc.)

<HTML>
this goes at the very beginning of your page

<HEAD> this tag is next and includes important information about your page.

<TITLE> this tag must be part of the information in the <HEAD> and includes the words (a name or title) that will display at the top of your browser's window. This is also what is listed if someone adds a Bookmark for your page.
</TITLE> this tag must be after the title information

Comments <!--hey there--> can also be part of your <HEAD> information, a good place to put who you are, your email address, when you last updated this page, etc.

</HEAD> this tag must be at the end of the information in the <HEAD>

<BODY> this tag comes next and includes the text, pictures and link information for the entire document. The information in the <BODY> tag can also include colors for your page's text and background, or background images.

Structure of HTML inside the <BODY> include


</BODY> Always end the <BODY> part with this tag.

</HTML> this goes at the very bottom of your page!