Skip to content

Instantly share code, notes, and snippets.

@beatwade
Forked from fakiolinho/HTML: HTML5 Default Template
Last active September 19, 2018 08:12
Show Gist options
  • Save beatwade/cf4beb6a6dc71446bc95b1ee948115ce to your computer and use it in GitHub Desktop.
Save beatwade/cf4beb6a6dc71446bc95b1ee948115ce to your computer and use it in GitHub Desktop.
HTML: HTML5 Default Template
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
<!-- Favicons Start -->
<!-- In case image.ico -->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<!-- In case image.png -->
<link rel="shortcut icon" type="image/png" href="favicon.png" />
<!-- Favicons End -->
<!-- CSS Start -->
<link rel="stylesheet" type="text/css" href="style.css">
<!-- CSS End -->
<!-- HTML5 Support for old ie browsers -->
<!--[if lt IE 9]>
<script src="//cdn.bootcss.com/html5shiv/r29/html5.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Javascript Start -->
<!-- Check if jQuery already exists -->
<script type="text/javascript">
(function() {
if(window.jQuery === undefined)
{
document.write('<script type="text/javascript" src="//cdn.bootcss.com/jquery/3.3.1/jquery.min.js"><\/script>');
}
else
{
jQuery = window.jQuery;
}
})();
</script>
<script type="text/javascript">
jQuery(document).ready(function($) {
// Stuff to do as soon as the DOM is ready;
});
</script>
<!-- Javascript End -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment