JSFiddle - React, Tailwind, and code Playground
by Tiago Sousa
CSS
body {
background-color: tan
}
p {
font-family: arial;
font-size: 15px;
color: white;
}
div {
background-color: white;
width: 300px;
color: black;
}
JavaScript
function hello() {
alert("Hello how are you doing?");
}
function showtime() {
var now = new Date();
alert(now);
}