HTML
|
JavaScript
Alignment
Basics
Character Codes
Colors
CSS
DIVS
Forms
Frames
Links
Lists and Bullets
Meta Tags
Multimedia
Pictures
Spacing
Tables
Text
About Meta Tags
Abstract
Author
Copyright
Description
Distribution
Expiration
Generator
Keywords
Language
Refresh Redirect
Revisit
Robots
Robots
305
Robots Meta Tag
Description
The robots meta tag allows you to tell the search engines which pages you would and would not like indexed for others to search for.
The robots meta tag looks like
<META NAME="robots" content="XXX">
XXX is replaced with one of four options:
index - Index the page with search engines
noindex - Search engines completely ignore the page
follow - Search engines follow the page
nofollow - Search engines index but do not follow the page
Code
<HEAD>
<META NAME="robots" content="index">
</HEAD>
Output
n/a
Practice
<HEAD> <META NAME="robots" content="index"> </HEAD>
Advertisements