JSFiddle - React, Tailwind, and code Playground
HTML
<html>
<head>
</head>
<body>
<div id="container">
<div id="header">
<h1 id="title">Title</h1>
</div>
</div>
</body>
</html>
CSS
body {
background-color:black;
font-size:100%;
}
#title {
font-size:100px;
text-indent:50px;
}
#header {
background-image:url('test.png');
background-repeat:no-repeat;
background-color:black;
color:red;
height:110px;
border-style:solid;
border-top-width:1px;
border-right-width:0px;
border-left-width:1px;
border-bottom-width:1px;
border-color:white;
}