JSFiddle - React, Tailwind, and code Playground

by Manju06

HTML

<div class="cards">

  <img src="http://placekitten.com/301/301" alt="paris-image" class="image">
  <h4>PARIS</h4>
  <p>$500/4 days</p>
  <a class="btn-book" href="#">Book Now</a>
</div>

CSS

.cards {
  display: grid;  
  grid-template-rows: 3fr 1fr 1fr 1fr;
  align-items: center;
  text-align: center;
  width: 200px;
  height: auto;
  border: 1px solid #fff;
  background: #afafaf;
  border-radius: 15px; 
}

.cards .image {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  display: block;
  margin-left: auto;
  margin-right: auto; 
}

.btn-book {
  background: #F25F5C;
  color: #fff;
  padding:15px;
  
}