JSFiddle - React, Tailwind, and code Playground

by mtzara

HTML

<h2>Hello!</h2>
<div id="helloworld"></div>
<h2>Goodbye!</h2>
<div id="goodbye"></div>

CSS

#helloworld {
    color: red;
}
h2 {
  color: blue
}

JavaScript

var name = prompt("What is your name?");  
  document.getElementById("helloworld").innerHTML="Welcome to CSCI E-3, "+name;