When embedding a YouTube video on a blog they give you an iFrame with a specific URL. Take this cat video example:
<iframe width="560" height="315" src="https://www.youtube.com/embed/JxS5E-kZc2s" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
The URL (https://www.youtube.com/embed/JxS5E-kZc2s) has a specific layout.
Are there any best practices or resources for prepping a URL to become an iFrame?
For context, I'm trying to make this page into an iFrame - https://vanilla-js-calculator-eta.vercel.app/.
Thank you,
Josh