JSFiddle - React, Tailwind, and code Playground

HTML

<h1>This is one very long title with grunge effect<span>&nbsp;</span></h1>

CSS

h1 {
    position:relative;
    color:#000;
    font-family: Georgia;
    font-size: 50px;
    opacity:.6;
}

h1 span{
    position:absolute;
    display:block;
    top:0;
    left:0;
    height:100%;
    width:100%;
    background:url('http://www.carvaomelro.pt/images/text-texture-1.png');
    opacity:.6;

}