Skip to content

Instantly share code, notes, and snippets.

@toughyear
Created January 8, 2020 16:16
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 toughyear/be7134a73f83e189e23c6538967e228c to your computer and use it in GitHub Desktop.
Save toughyear/be7134a73f83e189e23c6538967e228c to your computer and use it in GitHub Desktop.
index,html boilerplate for Bootstrap enabled web page
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Title</title>
<!-- all links here in head -->
<link rel="shortcut icon" type="image/png" href="img/meteor-solid.png" />
<link rel="stylesheet" href="./css/bootstrap.min.css" />
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark fixed-top"></nav>
<!-- Jquery -->
<script src="./js/jquery.3.4.1.js"></script>
<!-- bootstrap js file -->
<script src="./js/bootstrap.min.js"></script>
<!-- my script -->
<script src="./js/scripts.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment