+ 5
Bootstrap
how to link external bootstrap coding with main page.(for offline)
2 Antworten
+ 30
1. Download bootstrap.
2. Place its files in your project's folder. CSS files in the css folder, Javascript files in the js folder.
3. Place this inside your html file:
<head>
<link href="css/bootstrap.css" rel="stylesheet" />
<link href="css/bootstrap-theme.css" rel="stylesheet" />
<script src="js/bootstrap.min.js"></script>
</head>
+ 1
it's always better to add .js files( ex. bootstrap.min.js, jQuery.min.js) on footer or before the body tag finished