Complete the code to include the Bootstrap CSS file using a CDN link.
<link rel="stylesheet" href="[1]">
This link loads the official Bootstrap 5.3 CSS from a CDN, enabling Bootstrap styles in your page.
Complete the code to add a Tailwind CSS utility class that makes text bold.
<p class="[1]">This text is bold.</p>
The Tailwind class font-bold makes text bold.
Fix the error in the Bootstrap button code by completing the missing class name.
<button class="btn btn-[1]">Click me</button>
The Bootstrap button style uses classes like btn-primary for a blue button.
Fill both blanks to create a responsive grid container in Tailwind with 3 columns on medium screens and gap of 4.
<div class="[1] [2]">Content here</div>
md:grid-cols-3 creates a 3-column grid on medium screens and up, and gap-4 adds spacing between grid items.
Fill all three blanks to create a Bootstrap card with a header, body text, and a button.
<div class="card"> <div class="card-[1]">Header</div> <div class="card-[2]"> <p class="card-text">Some quick example text.</p> <a href="#" class="btn btn-[3]">Go somewhere</a> </div> </div>
Bootstrap cards use card-header for the header, card-body for the main content, and btn-primary for a primary styled button.