JSFiddle - React, Tailwind, and code Playground

by Alexander Branchugov

HTML

<h3 class="title">
  <span class="title__border"></span>
  <span class="title__content">
    Не знаете, в каком стили хотите сделать фасад вашего дома?
  </span>
</h3>

CSS

.title {
  height: 100px;
  position: relative;
  width: 320px;
}

.title::before {
  background: #fff;
  content: "";
  display: block;
  height: 60px;
  left: 0;
  position: absolute;
  top: 12px;
  width: 100%;
}

.title__border {
  border: 3px solid #f9a602;
  display: block;
  height: 100%;
  margin: 0 auto;
  width: 240px;
}

.title__content {
  font-size: 20px;
  font-weight: 600;
  left: 0;
  line-height: 24px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 20px;
  width: 100%;
}