JSFiddle - React, Tailwind, and code Playground
HTML
<link href='http://fonts.googleapis.com/css?family=Londrina+Solid|Londrina+Sketch' rel='stylesheet' type='text/css'>
<div>
<h1 class="bg">Hello There<span>Hello There</span></h1>
</div>
<p>Blah blah lorum ipsum</p>
CSS
h1
{
font-family: 'Londrina Solid';
font-size: 72px;
color: #fea;
position: relative;
width: 200px;
}
h1 span
{
font-family: 'Londrina Sketch';
font-size: 72px;
color: #a55;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}