Skip to content

Instantly share code, notes, and snippets.

@inkbase
Created February 19, 2016 00:30
Show Gist options
  • Save inkbase/79d13a37577b01454a7e to your computer and use it in GitHub Desktop.
Save inkbase/79d13a37577b01454a7e to your computer and use it in GitHub Desktop.
HTML: Default template
<!DOCTYPE html>
<html lang="en">
<head>
<title>Default HTML File</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="stylesheets/screen.css">
</head>
<body>
<script src="scripts/base.js"></script>
<script>
// If jQuery is being used, this can be removed and $(document).ready() can be used in base.js
(function() {
base.init();
})();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment