Card Generator

Width300px
Image Height200px
Padding24px
Border Radius12px
Shadow Intensity10

Card Title

This is a sample card description. You can adjust the styles using the controls.

<div class="card">
  <div class="card-image"></div>
  <div class="card-content">
    <h3>Card Title</h3>
    <p>This is a sample card description. You can adjust the styles using the controls.</p>
    <button>Read More</button>
  </div>
</div>
.card {
  width: 300px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

.card-image {
  height: 200px;
  background-color: #3b82f6;
  background-image: url('https://picsum.photos/seed/card/600/400');
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 24px;
}

.card-content h3 {
  margin: 0 0 10px;
  color: #1e293b;
}

.card-content p {
  margin: 0 0 20px;
  color: #64748b;
  line-height: 1.5;
}

.card-content button {
  padding: 10px 20px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.card-content button:hover {
  background: #2563eb;
}