JSFiddle - React, Tailwind, and code Playground

by jhu26

HTML

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

CSS

#helloworld {
    color: purple;
    font-family: veranda;
}

h2 {
    color: pink;
    font-family: veranda;
}

JavaScript

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