JSFiddle - React, Tailwind, and code Playground

by mlms13

HTML

<ol>
    <li>
        <h1>Preparation</h1>
        <p>First, gather your ingredients:</p>
        <ul>
            <li>Tortillas</li>
            <li>Cheese</li>
            <li>T-Bell sauce</li>
        </ul>
    </li>
    <li>
        <h1>Make teh foodz</h1>
        <p>Combine ingredients with a microwave</p>
    </li>
</ol>

CSS

/* Stupid Reset */
ol li {
    list-style: decimal outside;
}
ul li {
    list-style: disc outside;
}