[an error occurred while processing this directive]
Including Meta (Indexing) Information in your Document
There are a number of programs that search the World Wide Web for documents and compile them into indexes. Some of these merely extract filenames or titles from headers. Others use a more sophisticated method that depends on the HTML author to include indexing information in the HTML file in a specific format.
This indexing information is called meta information and can also be used to create your own local searchable indexes of your WebCom web pages.
To take effective advantage of these indexing services which rely on meta information, you need to include meta tags in the head section of your HTML document.
For example, if you want your files to be automatically indexed into a search facility which automatically combs the Web for new pages, you will need to include the following tag/name combinations in key files on your site (ones that serve as entry points into it):
<META name="resource-type" content="document">
<META name="description" content="description of page">
<META name="keywords" content="key words">
<META name="distribution" content="global">
<META name="copyright" content="copyright infomation">
Here is a breakdown of the significance of each tag. Note that when a document is indexed, the TITLE of the document becomes more significant, as it will be part of the information people use to decide whether or not to visit a site, based on the material displayed in the index.
<META name="resource-type" content="document">
<META name="description" content="description of page">
<META name="keywords" content="key words">
<META name="distribution" content="global">
<META name="copyright" content="copyright information">
"This document copyright 1994 by Bob Smith. Use for non-profit and education purposes explicitly granted."
Again, this is the only information people looking at this entry in an index might have, so make sure the description, title, and key words all contribute to an useful summation of the content of the site the document leads into.
[an error occurred while processing this directive]