JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html><head>
<title>Foo</title>
</head><body>
    <div class="mask">
        <h1>Masked Text</h1>
    </div>
</body></html>

CSS

.mask {
    font-size:90px;
    font-family:Arial, sans;
    font-weight:700;
 background:url(http://upload.wikimedia.org/wikipedia/commons/thumb/f/f5/Einstein_1921_portrait2.jpg/384px-Einstein_1921_portrait2.jpg) repeat, white;
    -webkit-text-fill-color: transparent;
-webkit-background-clip: text;
}