<!DOCTYPE html>
<html>
<body>
<h1>JavaScript innerWidth and innerHeight Properties</h1>
<p id="demo"></p>
<script>
let w = window.innerWidth;
let h = window.innerHeight;
document.getElementById("demo").innerHTML = "Width: " + w + "<br>Height: " + h;
</script>
</body>
</html>