Google
 

Monday, December 3, 2007

HTML Template

Layout of a typical HTML page

Below is the basic layout for a HTML document, there are more parameters that can be utilized.

<HTML>
<HEAD>
<TITLE>
Page title goes here</TITLE>
<
META NAME="description" CONTENT=" Description of page goes here">
<
META NAME="keywords" CONTENT="Any keywords go here ">
</HEAD>

<BODY>

main body of page goes here

</BODY>

</HTML>


The
META tags are not crucial, but can help describe the page when presented in a listed environment such as a search engine.

No comments: