> ## Documentation Index
> Fetch the complete documentation index at: https://ai-kb.automationanywhere.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Imágenes y elementos incrustados

> Agregue imágenes, videos y otros elementos HTML

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

## Imagen

### Usando Markdown

La [sintaxis de markdown](https://www.markdownguide.org/basic-syntax/#images) le permite agregar imágenes usando el siguiente código

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

Tenga en cuenta que el tamaño del archivo de imagen debe ser menor a 5MB. De lo contrario, recomendamos alojar en un servicio como [Cloudinary](https://cloudinary.com/) o [S3](https://aws.amazon.com/s3/). Luego puede usar esa URL y embeber.

### Usando elementos incrustados

Para obtener más personalización con imágenes, también puede usar [elementos incrustados](/writing-content/embed) para agregar imágenes

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

## Elementos Incrustados y HTML

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

<br />

<Tip>
  Mintlify soporta [etiquetas HTML en Markdown](https://www.markdownguide.org/basic-syntax/#html). Esto es útil si prefiere etiquetas HTML a la sintaxis de Markdown, y le permite crear documentación con flexibilidad infinita.
</Tip>

### iFrames

Carga otra página HTML dentro del documento. Más comúnmente usado para embeber videos.

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