old type writer

by Daniel Hall

HTML

<div id="body"><p id="mass">

</p>

CSS

#body {
	   position: absolute;
		 background-color: gray;
		 height: 60%;
		 width: 100%;
		 left: 0%;
		 top: 40%;
		 font-family: "Courier New";
}
body {
	   background-color: #bababa;
		 
}
h1 {
	font-size: 400%;
}

JavaScript

var myMess = prompt("type in something");
    document.getElementById("mass")
		.innerHTML=myMess;