JSFiddle - React, Tailwind, and code Playground

by Lakshman Kambam

HTML

<div>
    <span class="thin">Hello</span> 
    <span class="bold">World!</span>
</div>

CSS

@import url('https://fonts.googleapis.com/css?family=Raleway:100,600');
*{
    font-size:30px;
}
.thin{
    font-family:Raleway;
    font-weight:100;
}
.bold{
    font-family:Raleway;
    font-weight:600;
}