Complete the code to link the Bootstrap CSS file in your HTML head.
<link rel="stylesheet" href="css/[1]">
The Bootstrap CSS file is usually named bootstrap.css and placed inside the css folder.
Complete the code to include the Bootstrap JavaScript file before the closing body tag.
<script src="js/[1]"></script>
The Bootstrap JavaScript file is usually named bootstrap.bundle.min.js and placed inside the js folder.
Fix the error in the folder structure path to the Bootstrap CSS file.
<link rel="stylesheet" href="[1]/bootstrap.min.css">
The Bootstrap CSS file is stored in the css folder, not in js or other folders.
Fill both blanks to create a correct Bootstrap folder structure with CSS and JS folders.
<project_root>/ ├── [1]/ └── [2]/
The main folders for Bootstrap files are css for stylesheets and js for JavaScript files.
Fill all three blanks to complete the Bootstrap folder structure including CSS, JS, and fonts folders.
<project_root>/ ├── [1]/ ├── [2]/ └── [3]/
The typical Bootstrap folder structure includes css for styles, js for scripts, and fonts for icon fonts or typography files.