JSFiddle - React, Tailwind, and code Playground

by Romanouski_Tucke_9

HTML

<!DocTypeHtml>
<html>

  <head>
    <title>HTML With JAVAScript</title>
  </head>

  <body>
    <div id="a1">
      <h1 id="">Doing HTML WITH JAVASCRIPT</h1>
      <button id="B2" onclick="alert('HELLO WORLD!!')">Click Here</button>

    </div>
  </body>
  <script>
    document.getElementById("B2").innerhtml;
    
  </script>


</html>

CSS

#a1 {
  background-color: cyan;
  color: navy;
  width: 460px;
  height: 50px;
  text-align: center;
}