JSFiddle - React, Tailwind, and code Playground

by Alain Martinez

HTML

<div class="bg-img-header-journal" style="background-image: url(http://services-airfoil-digital.pantheonsite.io/wp-content/uploads/2018/04/sunny.jpg)">                                    
  <div class="wrapper">
    <h1>THIS IS THE TITLE OF THIS ARTICLE</h1> 
  </div>
 </div>

CSS

.bg-img-header-journal {
  width: 100%;
  height: 500px;
}
.wrapper {
  width: 450px;
  padding: 100px;
}
h1{
    display:inline;
    background-color:#000;
    color:#fff;
    font-size: 40px;
    font-family: Roboto, sans-serif;
}