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
Language
310
Language Meta Tag
Description
The language meta tag allows you to specify what language your web page is written in.
The language meta tag looks like
<META HTTP-EQUIV="content-language" CONTENT="XX">
XX is replaced with the language which must be RFC1766 compliant. Here is a list of the common languages in this correct format:
EN - English
ES - Spanish
FR - French
JA - Japanese
ZH - Chinese
Code
<HEAD>
<META HTTP-EQUIV="content-language" CONTENT="EN">
</HEAD>
Output
n/a
Practice
<HEAD> <META HTTP-EQUIV="content-language" CONTENT="EN"> </HEAD>
Advertisements