<html>
<body>
<h1>The Window Object</h1>
<h2>The outerWidth and outerHeight Properties</h2>
<p id="demo"></p>
<script>
let w = outerWidth;
let h = outerHeight;
document.getElementById("demo").innerHTML = "Width: " + w + "<br>Height: " + h;
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_win_outerheight1 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:39:28 GMT -->
</html>