JSFiddle - React, Tailwind, and code Playground

HTML

<h1>заголовок</h1>

CSS

h1{
			text-align:center;
			font-size:18px;
			font-weight:normal;
			position:relative;
            width:200px;
		}
		h1:before{
			content:'';
		    height:2px;
		    width:200px;
		    position:absolute;
			left:0;
			top:12px;
			background:#f28241;
		}
		h1:after{
			content:'';
		    height:2px;
		    width:100px;
		    position:absolute;
			left:50px;
			top:12px;
			background:#fff;
		}