joshdon / ProjectSand

HTML5 Sand Falling Game
https://www.projectsand.io/
GNU General Public License v3.0
60 stars 33 forks source link

Remove deprecated meta content-language element #1

Closed yawnoc closed 4 years ago

yawnoc commented 4 years ago

Fixes the validation error:

Using the meta element to specify the document-wide default language is obsolete. Consider specifying the language on the root element instead. From line 13, column 3; to line 13, column 51

slate">↩  <meta http-equiv="Content-Language" content="en">↩  <li

In HTML5 it is sufficient to have the lang attribute on the main <html> element. See https://www.w3.org/International/questions/qa-http-and-lang.en#meta_summary.

joshdon commented 4 years ago

Thanks!