0 votes
92 views
in HTML by (2.2k points)
edited
How do you create a card with HTML and CSS?

1 Answer

0 votes
by (98.9k points)
selected by
 
Best answer
<div class="card">
  <img src="image.jpg" alt="Card Image">
  <div class="card-content">
    <h3>Title</h3>
    <p>Card content goes here.</p>
    <a href="#" class="button">Read More</a>
  </div>
</div>

 

.card {
  width: 300px;
  background-color: #f0f0f0;
  border-radius: 5px;
  padding: 20px;
}

.card img {
  width: 100%;
}

.card-content {
  margin-top: 10px;
}

.button {
  background-color: #333;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
}

 

 

See the Pen card by Mr Ram (@mrram) on CodePen.

Related questions

0 votes
1 answer 85 views
0 votes
1 answer 64 views
asked Jun 12, 2023 in HTML by radhe (2.2k points)
0 votes
1 answer 94 views
0 votes
1 answer 133 views
0 votes
1 answer 93 views
0 votes
1 answer 78 views

Doubtly is an online community for engineering students, offering:

  • Free viva questions PDFs
  • Previous year question papers (PYQs)
  • Academic doubt solutions
  • Expert-guided solutions

Get the pro version for free by logging in!

5.7k questions

5.1k answers

108 comments

537 users

...