Complete the code to create a primary Bootstrap button.
<button type="button" class="btn btn-[1]">Primary</button>
The class btn-primary styles the button with Bootstrap's primary color.
Complete the code to create a Bootstrap button with a danger style.
<button type="button" class="btn btn-[1]">Delete</button>
The class btn-danger styles the button with a red color indicating danger.
Fix the error in the button class to make it a Bootstrap success button.
<button type="button" class="btn btn-[1]">Save</button>
The correct class suffix for a green success button is success.
Fill both blanks to create a large, outline primary Bootstrap button.
<button type="button" class="btn btn-[1] btn-[2]">Click Me</button>
The class btn-lg makes the button large, and btn-outline-primary gives it an outlined primary style.
Fill all three blanks to create a small, disabled, secondary Bootstrap button.
<button type="button" class="btn btn-[1] btn-[2]" disabled>[3]</button>
btn-secondary styles the button with a secondary color, btn-sm makes it small, and the button text is 'Disabled'. The disabled attribute disables the button.