JSFiddle - React, Tailwind, and code Playground
HTML
<html>
<body>
<h2>My First Web Page</h2>
<p>My First Paragraph.</p>
<button id="demo">CLICK</button>
<script>
document.getElementById("demo").innerHTML;
</script>
</body>
</html>