Complete the code to make the text color red using Bootstrap utilities.
<p class="text-[1]">This text is red.</p>
The class text-danger applies a red color to the text in Bootstrap.
Complete the code to set the background color to blue using Bootstrap utilities.
<div class="bg-[1] p-3">Blue background</div>
The class bg-primary sets a blue background color in Bootstrap.
Fix the error in the code to make the text color green using Bootstrap utilities.
<span class="text-[1]">Green text</span>
The correct class for green text in Bootstrap is text-success.
Fill both blanks to create a paragraph with yellow background and dark text using Bootstrap utilities.
<p class="bg-[1] text-[2] p-2">Yellow background with dark text</p>
bg-warning gives a yellow background, and text-dark makes the text dark for good contrast.
Fill all three blanks to create a div with green background, white text, and padding using Bootstrap utilities.
<div class="bg-[1] text-[2] p-[3]">Green background with white text and padding</div>
bg-success sets a green background, text-white makes the text white, and p-3 adds padding around the content.