Skip to content

Instantly share code, notes, and snippets.

@gotofritz
Last active December 25, 2015 06:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gotofritz/6932619 to your computer and use it in GitHub Desktop.
Save gotofritz/6932619 to your computer and use it in GitHub Desktop.
Minimal HTML documents
<!DOCTYPE html>
<html lang="en">
<head>
<!-- charset always before title to avoid UTF-7 exploits -->
<meta charset="utf-8">
<title>title</title>
<link rel="stylesheet" href="css.css">
</head>
<body>
</body>
<script src="js.js"></script>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<TITLE>A study of population dynamics</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>title</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
</body>
<script type="text/javascript" src="js.js"></script>
</html>
@gotofritz
Copy link
Author

@gotofritz
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment