Skip to content

Instantly share code, notes, and snippets.

@Philtky
Forked from iwek/html5-blank-template
Created February 24, 2020 12:10
Show Gist options
  • Save Philtky/7ac5297d7c0f12a9a0a635055db83f1b to your computer and use it in GitHub Desktop.
Save Philtky/7ac5297d7c0f12a9a0a635055db83f1b to your computer and use it in GitHub Desktop.
HTML5 Blank Template with jQuery
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Blank HTML5</title>
<style>
</style>
</head>
<body>
<p>This is my HTML5 Boilerplate.</p>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
$(document).ready(function() {
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment