Button group
This HTML snippet showcases two sets of button groups styled differently:

<h2 class="mb-2 mt-4">Button Groups</h2>
<!-- Button Group 1: Outlined Buttons with Custom Colors -->
<div class="btn-group">
<a href="#" class="btn-outlined-orange text-orange text-hover-white">btn 1</a>
<a href="#" class="btn-outlined-orange text-orange text-hover-white">btn 2</a>
<a href="#" class="btn-outlined-orange text-orange text-hover-white">btn 3</a>
</div>
<!-- Button Group 2: Primary and Secondary Buttons -->
<div class="btn-group">
<a href="#" class="btn-primary text-white">btn 1</a>
<a href="#" class="btn-secondary text-white">btn 2</a>
<a href="#" class="btn-primary text-white">btn 3</a>
</div>
Key Features
Usage
Last updated