JSFiddle - React, Tailwind, and code Playground

by Ramya Ranganathan

HTML

<h1>Hello!</h1>
<div id="helloworld"></div>
<div style="color:#0000FF">
  <h3>This is my first assignment</h3>
  <p>I really enjoy doing this exercise.</p>
</div>

CSS

#helloworld 
  body {
    background-color: #0000FF;
   
}
h1
{
    color: yellow;
    text-align:center;
}

h3 {
    color: orange;
    text-align: left;
}

p {
    font-family: "Times New Roman";
    font-size: 20px;
}
p.one {
    border-style: solid;
    border-width: 5px;
}

JavaScript

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