JSFiddle - React, Tailwind, and code Playground

by mlms13

HTML

<h1>CDPC Resource Database Tech Preview</h1>

<h2>Coalition Development</h2>
<h3>From the continuum below, select the option that best reflects your coalition's stage in development</h3>
<ul>
    <li>New Coalition-Initial Planning Stage</li>
    <li>New Coalition-Determining Structure</li>
    <li>Established Coalition-Partnerships</li>
    <li>Established Coalition-Maintenance</li>
    <li>Established Coalition-Rejuvenation Stage</li>
</ul>

CSS

body {
    font-family: sans-serif;
    font-size: 13px;
    margin: 0;
    padding: 0;
}
h1 {
    font-size: 18px;
}
h2 {
    font-size: 16px;
}
h3 {
    font-size: 14px;
    font-weight: normal;
    font-style: italic;
}
ul {
    list-style: none;
}
li {
    float: left;
    margin-right: 20px;
    width: 160px;
}