<!DOCTYPE html>
<html>
<body>
<h2>Get the current URL</h2>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML =
"The full URL of this page is:<br>" + window.location.href;
</script>
</body>
</html>