Minimalistische Turnringe von Movement Made

<style><!--
body{
margin: 0; /* Remove default margin */
}
iframe{
display: block; /* iframes are inline by default */
height: 100vh; /* Set height to 100% of the viewport height */
width: 100%; /* Set width to 100% of the viewport width */
border: none; /* Remove default border */
}
--></style>
<iframe src="https://movementroadmap.com/minimalist_gym_rings" id="myIframe"></iframe> <script>
// Selecting the iframe element
var iframe = document.getElementById("myIframe");

// Adjusting the iframe height onload event
iframe.onload = function(){
iframe.style.height = iframe.contentWindow.document.body.scrollHeight + 'px';
}
</script>