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

# 图像与嵌入

> 添加图像、视频与其他 HTML 元素

<img style={{ borderRadius: '0.5rem' }} src="https://mintlify-assets.b-cdn.net/bigbend.jpg" />

## 图像

### 使用 Markdown

使用[Markdown 语法](https://www.markdownguide.org/basic-syntax/#images)可以按如下方式插入图像：

```md theme={null}
![title](/path/image.jpg)
```

请注意，图像文件大小需小于 5MB。否则，建议使用 [Cloudinary](https://cloudinary.com/) 或 [S3](https://aws.amazon.com/s3/) 等服务托管，然后嵌入该 URL。

### 使用嵌入

若需更多自定义能力，也可以使用[嵌入](/writing-content/embed)来添加图像：

```html theme={null}
<img height="200" src="/path/image.jpg" />
```

## 嵌入与 HTML 元素

<iframe width="560" height="315" src="https://www.youtube.com/embed/4KzFe50RQkQ" title="YouTube video player" frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen style={{ width: '100%', borderRadius: '0.5rem' }} />

<br />

<Tip>
  Mintlify 支持[Markdown 中的 HTML 标签](https://www.markdownguide.org/basic-syntax/#html)。如果你更喜欢 HTML 而不是 Markdown 语法，这将非常有用，并能让你创建高度灵活的文档。
</Tip>

### iFrame

在文档中加载另一个 HTML 页面；最常用于嵌入视频。

```html theme={null}
<iframe src="https://www.youtube.com/embed/4KzFe50RQkQ"> </iframe>
```
