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
Distribution
308
Distribution Meta Tag
Description
The distribution meta tag specify what groups your web page is directed towards such as world-wide or just local use.
The distribution meta tag looks like
<META name="distribution" content="XXX">
XXX is replaced with the type of distribution that is intended for the web page. There are three different types:
global - Page is designed for a world-wide audience
local - Page is designed for a local audience
iu - Page is designed for internal use only and not for public distribution
Code
<HEAD>
<META name="distribution" content="global">
</HEAD>
Output
n/a
Practice
<HEAD> <META name="distribution" content="global"> </HEAD>
Advertisements