JSFiddle - React, Tailwind, and code Playground

by Karan1412

HTML

<body>
<div id="big">
</div>
    <br />
<input type="button" id="b1" value="Press" onclick="big()">
<input type="button" id="b1" value="Reset" onclick="location.reload();">
</body>

CSS

big
{
color:red;
font-style:italic;
}

JavaScript

function big()
{
var elebig=document.createElement("big");
var text=document.createTextNode("This is 20Fingers2Brains");
elebig.appendChild(text);
document.getElementById("big").appendChild(elebig);
}