story maker
you make a story
by Daniel Hall
HTML
<div id="body"><p id="message">
</p></div>
<h1>
your story
</h1>
CSS
#body {
position: absolute;
background-color: gray;
left: 0%;
top: 30%;
width: 100%;
height: 70%;
}
h1 {
font-size: 650%;
color: gray;
}
body {
background-color: black;
}
JavaScript
var myMess = prompt("story maker what are you going to say?");
document.getElementById("message")
.innerHTML=myMess;