About Lesson
Styling Cards with Colors & Links
.bg-primary
,.bg-success
,.bg-danger
→ Change background color.text-white
,.text-dark
→ Change text color- .card-link → For Adding Links in Card
Example: Colored Cards & Links
HTML
<div class="card bg-primary text-white">
<div class="card-body">
<h5 class="card-title">Primary Card</h5>
<p class="card-text">This card has a blue background.</p>
<a href="#" class="card-link text-white">Read More</a>
</div>
</div>
Output:
