My Website <script> window.addEventListener('resize', function() { var iframe = document.getElementById('my-iframe'); var width = Math.min(window.innerWidth, 100 * window.innerHeight); var height = Math.min(window.innerHeight, 100 * window.innerWidth); iframe.width = width; iframe.height = height; }); </script>