JSFiddle - React, Tailwind, and code Playground

by joaocunha

CSS

/* == displaying the <title> tag on the body == */
/* ----------- props to @Hagenburger ---------- */

head, title {
    display: block;
    background: teal;
    color: white;
    text-align: center;
}

head, title:before {
    content: 'This is the title of my page: ';
    background:black;
}