JSFiddle - React, Tailwind, and code Playground

by alfannas

HTML

DOM (Document Object Model)
<div id="demo">

</div>

JavaScript

var text = document.getElementById("demo");
text.innerHTML = "Hello World";
text.style.fontSize = "30px";