I am currently working with Bootstrap 4 and created a card:
<div class="card text-center">
<div class="card-header">
Featured
</div>
<div class="card-block">
<h4 class="card-title">Special title treatment</h4>
<p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
Now, I want to add an icon on the right side of the header along with a dropdown menu. Can you guide me on how to achieve this? I tried looking for examples online but couldn't find any.