JSFiddle - React, Tailwind, and code Playground

by Romanouski_Tucke_9

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>