Use the <img>
tag to add an image to a card. Specify the source (src) attribute with the image URL and optionally provide alternate text using the alt attribute. Here's an example:
<div class="card">
<img src="image.jpg" alt="Card Image">
<!-- Card content goes here -->
</div>