Created
February 19, 2016 00:30
-
-
Save inkbase/79d13a37577b01454a7e to your computer and use it in GitHub Desktop.
HTML: Default template
This file contains hidden or 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="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