Problem Statement
Which class creates a primary styled button in Bootstrap 5?
Explanation
In Bootstrap 5, buttons use the .btn class along with a variant like .btn-primary to define color and style.
Code Solution
SolutionRead Only
<button class='btn btn-primary'>Click</button>
