Skip to content

Instantly share code, notes, and snippets.

@Ellyria
Last active August 25, 2018 15:25
Show Gist options
  • Save Ellyria/8d399a40f2ecffa4f376860b1c3ea887 to your computer and use it in GitHub Desktop.
Save Ellyria/8d399a40f2ecffa4f376860b1c3ea887 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<!-- ================================================== -->
<title>jQuery Skeleton</title>
<!-- ================================================== -->
<meta charset="utf-8" />
<!-- ================================================== -->
<!-- Optional support for older (IE9 or older) Microsoft browsers: -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- ================================================== -->
<style>
* {/*INCLUDE BORDER AND PADDING WITHIN HEIGHT AND WIDTH*/
box-sizing: border-box;
}
abbr,acronym {/*CSS RESET*/
border:0;
}
address,caption,cite,code,dfn {/*CSS RESET*/
font-style:normal;
font-weight:normal;
}
article, aside, figure, footer, header, main, nav, section {/*BACKWARD COMPATIBILITY*/
display: block;
}
blockquote,body,div,h1,h2,h3,h4,h5,h6,html,li,ol,p,ul {/*CSS RESET*/
margin:0;
padding:0;
}
unknown-element-name {/*UNKNOWN ELEMENT*/
display: block;
}
</style>
</head>
<body>
</body>
<!-- ================================================== -->
<!-- JavaScript at bottom for faster page loading. -->
<!-- ================================================== -->
<!-- Help older browsers to handle unknown elements: -->
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<script src="/js/html5shiv.js"></script>
<![endif]-->
<!-- ================================================== -->
<!-- jQuery library: -->
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.js"></script>
<script type="application/javascript">window.jQuery || document.write('<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js">\x3C/script>')</script>
<script type="application/javascript">window.jQuery || document.write('<script src="../jquery.min.js">\x3C/script>')</script>
<!-- ================================================== -->
<!-- jQuery document ready method -->
<script>
$(document).ready(function(){
});
</script>
<!-- ================================================== -->
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment