JSFiddle - React, Tailwind, and code Playground

by Morpheus_God

HTML

<div class="lc">
  <span>Создай свой сайт</span>
</div>

CSS

body{
  background-color: #000;
}

span{
  position: relative;
  color:#fff;
}

.lc{
  margin:80px auto;
}

span::before{
  content:'';
  position: absolute;
  top:0;
  right:10px;
  border-top:2px solid red;
  width:30px;
}

span::after{
  content:'';
  position: absolute;
  bottom:0;
  left:10px;
  border-top:2px solid red;
  width:30px;
}