Skip to content

Instantly share code, notes, and snippets.

@sudiptasharif
Forked from planetoftheweb/bootstrapCDN.html
Last active May 20, 2016 15:39
Show Gist options
  • Select an option

  • Save sudiptasharif/2067b827f80f83013ee5c88ab3360208 to your computer and use it in GitHub Desktop.

Select an option

Save sudiptasharif/2067b827f80f83013ee5c88ab3360208 to your computer and use it in GitHub Desktop.
Bootstrap JQuery Template
<!DOCTYPE html>
<html lang="en">
<head>
<!-- HEAD SECTION -->
<!-- Set charset-->
<meta charset="utf-8">
<!-- IE Edge Meta Tag -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<!-- Optional Theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css">
<!-- jQuery UI CSS -->
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<!-- Optional IE8 Support -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Page Title -->
<title>Bootstrap Template</title>
</head>
<body>
<!-- Delete later -->
<h2>Page Contents</h2>
<ul>
<li>Bootstrap - Minified CSS</li>
<li>Bootstrap - Optional Theme</li>
<li>JQuery - UI themes</li>
<li>JQuery</li>
<li>JQuery UI</li>
<li>JavaScript for JQuery</li>
</ul>
<!-- FOOTER SECTION - Before closing </body> tag -->
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.3/jquery.min.js"></script>
<!-- jQuery UI -->
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<!-- Minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<!-- Your Own JavaScript-->
<script type="text/javascript"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment