Skip to content

Instantly share code, notes, and snippets.

@joe-oli
Last active September 3, 2020 11:50
Show Gist options
  • Save joe-oli/1b33a69ba8dc5ba3bda3b0c93ea9e4c2 to your computer and use it in GitHub Desktop.
Save joe-oli/1b33a69ba8dc5ba3bda3b0c93ea9e4c2 to your computer and use it in GitHub Desktop.
basic / minimal html template / boilerplate
<html>
<head>
<link rel="stylesheet" href="bootstrap.css">
<link rel="stylesheet" href="your-other-styles.css">
</head>
<body>
<!-- content -->
<script src="jquery.js"></script>
<script src="bootstrap.js"></script>
<script src="your-other-scripts.js"></script>
</body>
</html>
<!-- you can use following CDNs
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
//-- jQuery (necessary for Bootstrap's JavaScript plugins) --//>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
OR
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/s/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment