Language
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
Advertisements