JSFiddle - React, Tailwind, and code Playground

by Ashish Mishra

HTML

<P>I <b>❤</b> <s>HTML5</s> With <i>Janu</i> as my JScript</P>

CSS

body{
color:red;
background:black;
font-family:segoe ui;
 
 font-size:100px;
}
p{
    color:brown;
    transition:all 500ms ease-in-out;
    text-shadow:0px 0px 50px 1px,0px 0px 10px 1px;
}
b{
    color:red;
    transform:scale(1.3);
    
    
}


i{
    color:pink;
}

JavaScript

setInterval(function(){
    
var R = Math.floor((Math.random())*255)+0;
var G = Math.floor((Math.random())*255)+0;
var B = Math.floor((Math.random())*255)+0;

$('p').css({'color':'#'+R+G+B});
    
},500);