JSFiddle - React, Tailwind, and code Playground

by Alexis Rodriguez

HTML

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

CSS

#helloworld {
    color: purple;
}

JavaScript

var name = prompt("What is your favorite food?");  
  document.getElementById("helloworld").innerHTML="Let me get you some "+name;