Skip to content

Instantly share code, notes, and snippets.

@mreed4
Created May 20, 2021 22:55
Show Gist options
  • Save mreed4/2f7144f219733471e71f649d9ece9098 to your computer and use it in GitHub Desktop.
Save mreed4/2f7144f219733471e71f649d9ece9098 to your computer and use it in GitHub Desktop.
HTML5 Boilerplate - No jQuery, no Bootstrap, async, responsive ready
<!doctype html>
<html lang="en">
<head>
<title>Title</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/styles.css">
<script src="js/scripts.js" async></script>
<!--https://stackoverflow.com/questions/436411/where-should-i-put-script-tags-in-html-markup-->
</head>
<body>
<h1>Hello world</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment