Card
The Card component is an enhanced version of the box component, by giving structure to the element.
<div class="card">
<div class="card-title">Card Title</div>
<div class="card-body">
This is where content would go
</div>
<div class="card-footer">by forumify</div>
</div>
Card Title
This is where content would go
Structure
We recommend structuring a card like below

| Element | Description |
|---|---|
| 1. Container | The container holds all the elements of the card component. |
| 2. Title | The title of the card. |
| 3. Contents | The main body of content within the card. |
| 4. Footer | The footer of the card component is typically used for action buttons. |