> ## Documentation Index
> Fetch the complete documentation index at: https://docs.evidence.studio/llms.txt
> Use this file to discover all available pages before exploring further.

# Iframe

> Embed another URL into your page

```liquid theme={null}
{% iframe src="https://example.com" /%}
```

## Examples

### Basic Usage

```liquid theme={null}
{% iframe src="https://example.com" /%}
```

### Custom Height

```liquid theme={null}
{% iframe src="https://example.com" height=400 /%}
```

## Attributes

<ResponseField name="src" type="string" required />

<ResponseField name="height" type="number">
  Set a fixed height for the iframe in pixels
</ResponseField>

<ResponseField name="attrs" type="object" />

<ResponseField name="width" type="number">
  Set the width of this component (in percent) relative to the page width
</ResponseField>
