JSFiddle - React, Tailwind, and code Playground

by Michael Wagner

HTML

<div class="container">
  <div class="img-container">
    <img src="http://lorempixel.com/500/300/" alt="">
  </div>
  <div class="text-container">
    HOME DESIGNS
  </div>
</div>

CSS

.container {
  width: 500px;
  height: auto;
  overflow: hidden;
  background-color: #fff;
  border: 5px solid orange;
  text-align: center;
  font-weight: 800;
  font-size: 1.5em;
  font-family: sans-serif;
}

.img-container > img {
  background-size: cover;
  display: block;
}

.text-container {
  background-color: orange;
  color: #fff;
  height: 150px;
  line-height: 150px;
}