mathiasbynens / small

Smallest possible syntactically valid files of different types
https://mathiasbynens.be/notes/minimal-html
1.93k stars 184 forks source link

html5.html is invalid #75

Closed zzzzBov closed 7 years ago

zzzzBov commented 7 years ago

<!DOCTYPE html> isn't valid HTML5 courtesy of https://html5.validator.nu/

At a minimum, the title element is required, and it must have a value:

<!DOCTYPE html><title>_</title>

is the smallest valid HTML5 document that I'm aware of.

mathiasbynens commented 7 years ago

See https://mathiasbynens.be/notes/minimal-html#5 as mentioned in the README.