JSFiddle - React, Tailwind, and code Playground
HTML
<h2>Hello and Welcome to Harvard Summer School!</h2>
<div id="helloworld"></div>
CSS
#helloworld {
color: green;
}
h2 {
color : purple;
}
JavaScript
var name = prompt("What is your name?");
document.getElementById("helloworld").innerHTML="Welcome to CSCI E-3, " + name;