Challenge - 5 Problems
Bootstrap Folder Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate2:00remaining
Identify the main Bootstrap CSS folder
In a typical Bootstrap project folder structure, which folder usually contains the compiled CSS files?
Attempts:
2 left
💡 Hint
Think about where stylesheets are stored in web projects.
✗ Incorrect
The 'css' folder holds all the compiled CSS files like bootstrap.min.css that style the webpage.
🧠 Conceptual
intermediate2:00remaining
Where are Bootstrap JavaScript files stored?
In the Bootstrap folder structure, which folder typically contains the JavaScript files that add interactive features?
Attempts:
2 left
💡 Hint
JavaScript files usually go into a folder named after the language.
✗ Incorrect
The 'js' folder contains JavaScript files like bootstrap.bundle.min.js that enable interactive components.
📝 Syntax
advanced2:00remaining
Correct Bootstrap SCSS folder usage
Which folder in Bootstrap's folder structure contains the source SCSS files for customization?
Attempts:
2 left
💡 Hint
SCSS files are source files used before compiling CSS.
✗ Incorrect
The 'scss' folder contains source SCSS files that developers can customize before compiling to CSS.
❓ layout
advanced2:00remaining
Bootstrap folder for images and fonts
In a Bootstrap project, where should you place custom images and fonts to keep the structure organized?
Attempts:
2 left
💡 Hint
Think about separating images and fonts into their own folders.
✗ Incorrect
Images go into an 'img' folder and fonts into a 'fonts' folder to keep assets organized.
❓ accessibility
expert2:00remaining
Organizing accessibility files in Bootstrap projects
If you want to add accessibility-related documentation or scripts in a Bootstrap project, which folder is best suited for these files?
Attempts:
2 left
💡 Hint
Documentation and extra info usually go into a special folder.
✗ Incorrect
The 'docs' folder is used for documentation and related files, including accessibility guides or scripts.