Week 1: Assignment 4
For this assignment, fork and modify the code.
HTML
<h2>Hello!</h2>
<div id="helloworld"></div>
CSS
body {
background-color: #bebebe;
}
#helloworld {
color: black;
}
JavaScript
var name = prompt("What is your name?");
document.getElementById("helloworld").innerHTML = "Just kidding" + " Welcome to CSCI E-3 " + name;
alert("you sit on a trone of lie");