JSFiddle - React, Tailwind, and code Playground

HTML

<p style="font-size: 50px;">Hello World</p>

<p style="font-size: 150px;">Hello World</p>

CSS

@font-face {
    font-family: 'dotlineregular';
    src: url('http://projects.decodingweb.com/dots/dotlrg__-webfont.eot');
    src: url('http://projects.decodingweb.com/dots/dotlrg__-webfont.eot?#iefix') format('embedded-opentype'),
         url('http://projects.decodingweb.com/dots/dotlrg__-webfont.woff') format('woff'),
         url('http://projects.decodingweb.com/dots/dotlrg__-webfont.ttf') format('truetype'),
         url('http://projects.decodingweb.com/dots/dotlrg__-webfont.svg#dotlineregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: dotlineregular;
}