HTML HEADER TAGS

HEADER TAGS
DESCRIPTION
COMMON ATTRIBUTES
<title> </title> Places the names of the page in the browser title bar.
<meta> Used for displaying information about the content of a web page. The information thus presented is used by some search engines when indexing the page.
name= "keyword" content = Defines the key word.
name= "author" content = Supplies information about the author.
name= "description" content = Supplies a brief description of the page

example of <meta> syntax:

<meta name = "keywords" content = "cat, dog, pig"

<pre> </pre> Text placed between these tags retain its formatted appearance  
<h1> </h1> Text placed between these tags is presented as large headlines

This is headline1

<h6> </h6> Text placed between these tags is presented as small headlines
This is headline 6.
<b> </b> Text placed between these tags is presented as bold This is bold text.
<i> </i> Text placed between these tags is presented asitalics This is italics text
<tt> </tt> Text placed between these tags is presented as teletype. This is teletype text.
<cite> </cite> Text placed between these tags is presented as citation. This is citation.
<em> </em> Text placed between these tags is presented as emphasis This is emphasis.