Created
January 26, 2019 18:39
-
-
Save paulwib/43d04b33d94470873992b28a8552e477 to your computer and use it in GitHub Desktop.
Minimal valid HTML docs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" | |
"http://www.w3.org/TR/html4/strict.dtd"> | |
<html> | |
<title>The most minimal valid HTML4 document</title> | |
<p>At least some other content than a title is required, no head or body</p> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<title>The most minimal valid document</title> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment