I'm finishing up an HTML5 site that has a mixture of English and Mandarin Chinese.
My validator (HTML5 Validator add-on for FF) is giving me this error:
error: Using the “meta” element to specify the document-wide default
language is obsolete. Consider specifying the language on the root
element instead.
At line 6, column 9: <meta http-equiv="Content-Language" content="en-us" />
the relevant code is:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
checking W3.org leads me to this page: telling me that yes, it's obsolete
I must confess I don't understand how I am supposed to bring this code into compliance?
I don't know what "specifying the language on the root element" means, or how to do it?
Surely <html lang="en">
doesn't suffice for UTF-8
?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…