Complete the code to create a Bootstrap alert box that informs users about feedback importance.
<div class="alert alert-[1]" role="alert"> User feedback helps improve our website! </div>
The info class creates a blue alert box, which is suitable for informational messages like feedback importance.
Complete the code to add a Bootstrap button that users can click to submit their feedback.
<button type="button" class="btn btn-[1]">Submit Feedback</button>
The primary button class highlights the button as the main action, encouraging users to submit feedback.
Fix the error in the Bootstrap form control class to properly style the feedback input box.
<input type="text" class="form-[1]" placeholder="Enter your feedback">
The correct Bootstrap class for styling input fields is form-control.
Fill both blanks to create a responsive Bootstrap grid with two columns for feedback and user info.
<div class="row"> <div class="col-[1]"> <textarea class="form-control" placeholder="Your feedback"></textarea> </div> <div class="col-[2]"> <input type="text" class="form-control" placeholder="Your name"> </div> </div>
The first column takes 8 parts of the 12-grid, the second takes 4, making a balanced layout.
Fill all three blanks to create a Bootstrap card showing user feedback with a header, body, and footer.
<div class="card"> <div class="card-[1]">User Feedback</div> <div class="card-[2]"> <p>This website is very helpful!</p> </div> <div class="card-[3]">Posted 2 days ago</div> </div>
The card header, body, and footer are the correct Bootstrap classes to structure the card content.