JSFiddle - React, Tailwind, and code Playground

by Juan Muñoz

HTML

<h1>
  <span>Widgets</span>
  <small>Preview page</small>
</h1>

CSS

h1{
  font-size: 36px;
}
small{
  font-size: 15px;
    display: inline-block;
    padding-left: 4px;
    font-weight: 300;
}

JavaScript

$(document).ready(function(){
	$('h1 > span').html("GAR")
})