Created
May 24, 2022 05:44
-
-
Save remino/81a59f6598c9f62fd44e5b8dae81adee to your computer and use it in GitHub Desktop.
Minimal valid HTML5 document
This file contains 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> | |
<title>Valid HTML5 Document</title> | |
This is a valid HTML5 document. |
This file contains 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> | |
<title>{{title}}</title> | |
{{body}} |
This file contains 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
<!-- Added optional HTML lang, as some validators may warn of a missing one: --> | |
<!doctype html> | |
<html lang=en> | |
<title>Valid HTML5 Document</title> | |
This is a valid HTML5 document. | |
</html> |
This file contains 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 lang={{lang}}> | |
<title>{{title}}</title> | |
{{body}} | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment