Tables

Basic Table

ID Name Email Status
1 John Doe john@example.com Active
2 Jane Smith jane@example.com Active
3 Bob Johnson bob@example.com Inactive
<table class="table">
    <thead>
        <tr>
            <th>Column 1</th>
            <th>Column 2</th>
        </tr>
    </thead>
    <tbody>
        <tr>...</tr>
    </tbody>
</table>

Striped Table

Product Price Quantity Total
Laptop $1,200 2 $2,400
Mouse $25 5 $125
Keyboard $75 3 $225
<table class="table table-striped">...</table>

Bordered Table

Feature Free Pro Enterprise
Basic Support
Priority Support
Custom Integrations
<table class="table table-bordered">...</table>

Table with Actions

Name Email Actions
Alice alice@example.com
Bob bob@example.com

Badges

Primary Success Warning Danger Secondary
<span class="badge badge-primary">Primary</span>
<span class="badge badge-success">Success</span>
<span class="badge badge-danger">Danger</span>
← Back to Components