<html lang="en"> in code code example
Example 1: html lang
<!DOCTYPE html>
<html lang="en"> <!-- sets language to english -->
<!-- <head>, <body>, etc. contents-->
</html>
Example 2: html lang en-us or en-US
<!DOCTYPE html>
<html lang="en-US">
<!-- Specifies the document lauguage
(United States English) -->
</html>