Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <h1>The Document Object</h1> <h2>The domain Property</h2> <p>The domain name of the server this document was loaded from:</p> <p id="demo"></p> <script> let myDomain = document.domain; document.getElementById("demo").innerHTML = myDomain; </script> </body> </html>