<html>
<body>
<h1>The Element Object</h1>
<h2>The namespaceURI</h2>
<p id="myP">The namespace URI of this paragraph is:</p>
<p id="demo"></p>
<script>
let uri = document.getElementById("demo").namespaceURI;
document.getElementById("demo").innerHTML = uri;
</script>
</body>
</html>