JSFiddle - React, Tailwind, and code Playground

HTML

<html>
    <head>
        <title>Tittelen til siden</title>
    </head>
    <body>        
        <h1>Her er en overskrift</h1>
        <p>Her er et avsnitt med litt tekst...</p>                
        <p class="green-stuff">... og her er et avsnitt til, med litt mer tekst!</p>                
        <p id="clock">Hva er klokken?</p>
    </body>
</html>

CSS

body {
    color: red;
    font-family: Arial;
}

h1 {
    font-family: Helvetica;
    margin-top: 10px;
}

.green-stuff {
    color: green;
}

#clock {
    color: gray;
}