JSFiddle - React, Tailwind, and code Playground

by tnhu

HTML

<body>
    <h1>Hello World</h1>
    <p>
        This is a p tag
        <ul>
            <li>Item 1</li>
            <li>Item 2</li>
            <li>
                Item 3
                <ul>
                    <li>Item 4</li>
                    <li>Item 5</li>
                    <li>Item 6</li>
                </ul>
            </li>
        </ul>
    </p>
    <p>This is another p tag</p>
</body>

CSS

body {
    font-size: 100%;   
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.6em;
}

p {
    font-size: 1em;
}