> ## Documentation Index
> Fetch the complete documentation index at: https://00doc-web.vercel.app/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Embedding via iframe

> Show an Unfurl share URL inside your product, wiki, or internal tool using a standard iframe.

# Embedding via iframe

Any **public share URL** you get from Unfurl is an HTTPS page you can embed like other web content.

## Basic snippet

Replace `YOUR_SHARE_URL` with the full URL from the dashboard (including `https://`):

```html theme={null}
<iframe
  src="YOUR_SHARE_URL"
  title="Unfurl document"
  width="100%"
  height="720"
  style="border:0;border-radius:8px;"
  loading="lazy"
  referrerpolicy="no-referrer-when-downgrade"
></iframe>
```

Adjust `height` or use aspect-ratio CSS so the frame fits your layout.

<Warning>
  Some sites (Notion, email clients, locked-down intranets) block or strip iframes. Test in the target system. **Pro** removes Unfurl branding for a cleaner white-label embed where the host allows it.
</Warning>

## Theming

The hosted page uses your document's own HTML/CSS. Control fonts and colours **inside the HTML** you publish — the iframe shows exactly what `/d/[token]` shows.

## Use cases

* **Your SaaS** — embed a spec or help article next to the feature it describes.
* **Project tools** — paste the same link into Monday, Confluence, or internal wikis that support embeds.
* **Staging** — share one URL with QA; they always hit the latest publish.

<Card title="Custom branding" icon="palette" href="/guides/custom-branding" />
