Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>The Document Object</h1>
<h2>The documentURI Property</h2>
<p>The location of this document is:</p>
<p id="demo"></p>
<p>The documentURI property is not supported in Internet Explorer.</p>
<script>
let uri = document.documentURI;
document.getElementById("demo").innerHTML = uri;
</script>
</body>
</html>