JSFiddle - React, Tailwind, and code Playground

by chrisjg

HTML

<h1>page</h1>

<article>
     <h2>Article</h2>

    <section>
         <h3>Section</h3>

         <h4>Sub-section</h4>

    </section>
    <section>
         <h3>Section 2</h3>

    </section>
</article>

CSS

h1 {
    font-size: 3em;
    font-weight: bold;
}
h2 {
    font-size: 2.5em;
    font-weight: bold;
}
h3 {
    font-size: 2em;
    font-weight: bold;
}
h4 {
    font-size: 1.5em;
    font-weight: normal;
}
}