JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://zachleat.com/bigtext/bigtext.js"></script>
<div id="bigtext">
<div>Bring on the holidays!</div>
<div>We're setting up at</div>
<div><strong>The Brooklyn Flea</strong></div>
<div>in <strong>One Hanson Place,</strong></div>
<div><strong>starting 12/10.</strong></div>
<div>Come say hello.</div>
</div>
CSS
#bigtext {
width: 212px;
}
.bigtext {
text-transform:uppercase;
color:#939598;
}
.bigtext strong{
font-weight:normal;
color:#7CC242;
}
.bigtext div{
line-height:22px;
}
JavaScript
$('#bigtext').bigtext();