JSFiddle - React, Tailwind, and code Playground
HTML
<h2>Marhaba</h2>
<div id="helloworld"></div>
CSS
#helloworld {
color: green;
}
JavaScript
var name = prompt("What is your name?");
document.getElementById("helloworld").innerHTML="We are happy to welcome you to CSCI E-3, "+name;