# Embedding a share link using iframe

Display boards or assets right on your website using HTML iframe tags.

Written by Lauren Ford  
June 25, 2026

## Who can embed a share link using iframe?

👨‍👩‍👧‍👦 Supported on `any` **Air plan**  
✏️ Anyone that has access to **view** workspace, library, board, or asset/file with an enabled share link.

## Embedding a share link on your website

To embed a share link into your website, follow these steps:

1. Generate a share link and set the permissions to your preference. [Learn more about share links](https://help.air.inc/en/articles/8771544-sharing-your-workspace-content).
2. Copy the URL into your HTML iframe code.
3. Include `allowfullscreen` to enable opening assets in fullscreen from asset preview modal from iframe.
4. Include `allow="clipboard-read; clipboard-write"` to enable copying share link or other data from iframe.

If your site is hosted on a platform like [Squarespace](https://support.squarespace.com/hc/en-us/articles/206543617-Embed-blocks) or [Wix](https://support.wix.com/en/article/wix-editor-using-iframes-to-display-visible-content-on-your-site#embedding-an-external-site), they offer easy-to-use, no-code, embed blocks. Here's an example of what the code should look like:

```
<iframe src="https://app.air.inc/a/bkmtP3Jgh" allow="clipboard-read; clipboard-write" allowfullscreen></iframe>
```

_For more information on HTML iframe tags and how to embed them into your own code, check out_ [_this reference page_](https://www.w3schools.com/tags/tag_iframe.ASP) _._
