Style Sheet Workshop - 6 Hours

Disclaimer: Meta tags are not a magic solution to search engine ranking

For basic authoring and web development:
	
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="copyright" content="" />
<meta name="author" content="" />
<meta name="robots" content="" />
<meta name="rating" content="" />

	

For Robots:

noindex - Exclude page indexing
nofollow - Exclude indexing links
index - Allow page indexing
follow - Allow indexing of the links
all - Equivalent to INDEX+FOLLOW
none - Equivalent to NOINDEX+NOFOLLOW

Additional Meta Tags:

<META HTTP-EQUIV="expires" CONTENT="0">
Requires browser to load content from server rather than local cache
date format: 10/25/2003 or
Wed, 26 Feb 2004 08:21:57 GMT

Refresh to reload or load another page:
<META HTTP-EQUIV="Refresh" CONTENT="3;URL=http://www.someurl.org/somepage.html">

Revisit:
<META NAME="revisit-after" CONTENT="100 days">
Search engine will return in 100 days.

Creating a custom icon:

The icon you create has to be exactly 16 pixels by 16 pixels
(bitmap with .ico extension):

<LINK REL="SHORTCUT ICON" HREF="http://www.mysite.com/graphics/icons/mypage.ico">



<< Back