Skip to content

Instantly share code, notes, and snippets.

@randyburden
Created November 15, 2012 22:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save randyburden/4082021 to your computer and use it in GitHub Desktop.
Save randyburden/4082021 to your computer and use it in GitHub Desktop.
HTML webpage template with jQuery and jQuery UI included
<!DOCTYPE html>
<html>
<head>
<title></title>
<!-- Stylesheets -->
<link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.0/themes/smoothness/jquery-ui.css" >
<style type="text/css">
body { font-family: Arial, Sans-Serif; font-size: 12pt; }
.hidden { display: none; }
.underline { text-decoration: underline; }
.bold { font-weight: bold; }
.center { margin-left: auto; margin-right: auto; text-align: center; }
.left { text-align: left; }
.right { text-align: right; }
</style>
<!-- jQuery Scripts -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js"></script>
</head>
<body>
HTML webpage template with jQuery and jQuery UI included.
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment