JSFiddle - React, Tailwind, and code Playground
HTML
<body>
<h2>Hello!</h2>
<div id="helloworld"></div>
</body>
CSS
#helloworld {
color: purple;
font-family: Helvetica;
font-size: 12px;
}
h2 {
font-size: 28px;
font-family: Arial;
font-weight: 100;
}
body
{background-color: lightblue}
JavaScript
var name = prompt("What is your name?");
document.getElementById("helloworld").innerHTML="Welcome to CSCI E-3, "+name;