<html>
<body>
<h1>The Element Object</h1>
<h2>The innerHTML Property</h2>
<p id="myP">I am a paragraph.</p>
<p>The content of "myP" is:</p>
<p id="demo"></p>
<script>
let html = document.getElementById("myP").innerHTML;
document.getElementById("demo").innerHTML = html;
</script>
</body>
</html>