Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>The Element Object</h1>
<h2>The innerHTML Property</h2>
<p id="myP">This is a p element.</p>
<div id="myDIV">This is a div element.</div>
<script>
let text = "Hello Dolly";
document.getElementById("myP").innerHTML = text;
document.getElementById("myDIV").innerHTML = text;
</script>
</body>
</html>