JSFiddle - React, Tailwind, and code Playground

by rachelmc_

HTML

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

CSS

#helloworld {
    color: green;
}

JavaScript

var name = prompt("What is your name?");  
  document.getElementById("helloworld").innerHTML="Welcome to CSCI E-3, "+name;
   
  var subject = prompt("What are you here to learn?");  
  document.getElementById("helloworld").innerHTML="That's right! "+subject + "!";