Here's a wee test
December 05, 2024
Here is some text before a video.
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Embedded YouTube Video</title> <style> .videoWrapper { position: relative; padding-bottom: 56.25%; /* 16:9 aspect ratio (divide 9 by 16 = 0.5625) */ height: 0; overflow: hidden; } .videoWrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } </style> </head> <body> <div class="videoWrapper"> <!-- Replace 'YOUR_VIDEO_ID' with the ID of your YouTube video --> <iframe width="560" height="315" src="https://www.youtube.com/embed/7mDPCmu8fq8?si=yqTL2gjbyBjDEiPP&" frameborder="0" allowfullscreen></iframe> </div>Here is some text after a video.