Bootstrap introduces HTML
How to introduce Bootstrap into HTML?
Introduce Bootstrap into HTML by following these steps:
Download the Bootstrap file:
Copy the CSS and JS files:
bootstrap.css in the unzipped folder
Copy to your HTML file directory. bootstrap.js
in the unzipped folder to your HTML file directory. Link CSS and JS files in HTML:
In HTML file < ;head>
section, link to the stylesheet:
<link rel="stylesheet" href="bootstrap.css">
At the bottom of the HTML file, link to the JavaScript:
<script src="bootstrap.js"></script>
Example:
<head> <link rel="stylesheet" href="bootstrap.css"><script src="bootstrap.js"></script>Hello, Bootstrap!