Created
January 8, 2020 16:16
-
-
Save toughyear/be7134a73f83e189e23c6538967e228c to your computer and use it in GitHub Desktop.
index,html boilerplate for Bootstrap enabled web page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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