0
0
Bootsrapmarkup~20 mins

Importing Bootstrap in projects - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Bootstrap Import Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
How to include Bootstrap CSS in an HTML file?
Which of the following HTML lines correctly includes Bootstrap CSS from a CDN in your project?
A<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
B<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.js"></script>
C<style src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"></style>
D<link href="bootstrap.min.css" rel="script">
Attempts:
2 left
💡 Hint
Bootstrap CSS is included with a tag and rel="stylesheet" attribute.
📝 Syntax
intermediate
2:00remaining
Correct way to import Bootstrap JS bundle with Popper
Which script tag correctly imports Bootstrap's JavaScript bundle including Popper from a CDN?
A<script href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
B<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
C<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.min.js"></script>
D<link rel="script" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js">
Attempts:
2 left
💡 Hint
Bootstrap bundle includes Popper and is loaded with a