Buttons

We recommend using the following predefined buttons. They are sorted by importance in from left to right.

Link button

Usages

Button classes can be added to both <button> and <a> elements with the btn btn-* classes. They can also be outlined by replacing btn-* with btn-outline-*.

<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-secondary">Secondary</button>
<a href="#" class="btn btn-link">Link button</a>
<button type="button" class="btn btn-danger">Danger</button>

<button type="button" class="btn btn-outline-primary">Primary</button>
<button type="button" class="btn btn-outline-secondary">Secondary</button>
<button type="button" class="btn btn-outline-danger">Danger</button>

Link button