Text Links Ads : Marketing Tips Store : Search Engine Optimization Strategies
WebPosition Gold Pro : Domain Registration Bank : Optilink Software : GoDefy
Mike's Marketing Tools : Mike's Ecommerce Software : Text Links Guide
 
Web HTML-HTML.com
You are here: HTML Codes > Document Tags

<HEAD>

Usage Recommendation
thumbs up Use it.

illustrates the two sections in HTML: HEAD and BODYWithin <HTML>, the document has two sections to it: <HEAD> and<BODY ...>. <HEAD> is like the cover page of the document. Just as the cover page of a book contains information about the book (such as the title), the <HEAD> section contains information about the document. This information is communicated through the <TITLE> tag (which is required) and the <LINK ...> and <META ...> tags.

A simple document might look like this:

this code produces this
<HTML>
<HEAD>
<TITLE>My Home Page</TITLE>
</HEAD>
<BODY>
<H1>My Home Page</H1>
Hi there!
</BODY>
</HTML>
this page

A more slightly complicated document which uses <LINK ...> and <META ...> might look like this:

this code produces this
<HTML>
<HEAD>
<TITLE>My Home Page</TITLE>
<LINK REL=HOME HREF="/tags/index.html">
<META NAME=AUTHOR CONTENT="Ben Hall">
</HEAD>
<BODY>
<H1>My Home Page</H1>
Hi there!
</BODY>
</HTML>
this page

<BODY ...> >>>

Copyright © 2002-8 Art Dacor USA LLC. All Rights Reserved.
3727 West Magnolia Blvd #489, Burbank, CA, 91505, USA.
www.HTML-HTML.com