<!-- YouTube embed — sandbox keeps it from breaking out -->
<iframe
src="https://www.youtube-nocookie.com/embed/abc123"
title="How we cut page load time in half"
width="800" height="450"
loading="lazy"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
referrerpolicy="strict-origin-when-cross-origin">
</iframe>
<!-- More restrictive sandbox (for embedding untrusted user-uploaded HTML) -->
<iframe
src="/preview/user-123.html"
title="User preview"
sandbox="allow-same-origin allow-scripts"
loading="lazy">
</iframe>
<!-- sandbox tokens (each one re-enables a specific capability):
allow-scripts — JS execution
allow-forms — submitting forms
allow-same-origin — keep the iframe in its own origin (avoids null-origin)
allow-popups — window.open
allow-top-navigation — navigate the parent (DANGEROUS — usually omit)
Omit sandbox entirely for trusted same-origin iframes. -->
Create a free account and build your private vault. Share publicly whenever you want.