learn html

by Daniel Hall

HTML

<DOCTYPE>
  <p>
If you want to learn html watch this video down here
	</p>
	<iframe style="position: absolute; left: 15%;" src="https://www.youtube.com/embed/bWPMSSsVdPk" allowfullscreen></iframe>
<p style="position: absolute; top: 40%;">If you learned any thing click this button</p>
<button id="hello" style="position: absolute;
top: 45%;">
Enter code here
</button>
<div id="hh" style="position: absolute;
 left: 15%;
 width: 60%;
 height: 40%;
 top: 55%;">
 </div>
	</DOCTYPE>
</DOCTYPE>

JavaScript

var hello = document
   .getElementById("hello");
hello.addEventListener("click", replaceIt);

function replaceIt() {
   var myMess = prompt("now type in a HTML code");
	 document.getElementById("hh")
	 .innerHTML = myMess;
}