JSFiddle - React, Tailwind, and code Playground
by dima_k
HTML
<h1>Header 1</h1>
<br/>
<h2>Header 2</h2>
<br/>
<h3>Header 3</h3>
<br/>
<h4>Header 4</h4>
<br/>
<h5>Header 5</h5>
<br/>
CSS
/* You can apply same style to several elements. Just separate them with a comma */
h1, h2, h3, h4, h5 {
font-family: Helvetica, Arial, sans-serif;
color: fuchsia;
}