# Embed into Website or App

You can easily embed the FaceAR experience generated and hosted through the platform to any web page.

The web page can be part of a website or integrated in a mobile app.

## Using iframe

In order to embed the FaceAR experience you must declare an `iframe` tag and set its source to the address of the hosted experience:

```markup
<iframe src="https://api.echo3D.com/facear?key=<YOUR_API_KEY>" allow="camera *"/>
```

{% hint style="warning" %}
Note that you must allow for camera access to avoid camera permission errors.
{% endhint %}

![](/files/-M6yypfiQYmtj-yFocQQ)

## Code Example

Here is a fully styled HTML page with an embedded FaceAR experience:

{% code title="index.html" %}

```markup
<!DOCTYPE html>
<html>
    <head>
        <title>Ebmedded FaceAR Experience through echo3D</title>
        <style>
            #background {
                top: 0;
                left: 0;
                position: fixed;
                width: 100%;
                height: 100%;
                background-color: rgb(0, 45, 100);
                z-index: -1;
            }
            h1 {
                position: relative;
                color: white;
                text-align: center;
                font-size: 5vh;
		            font-family: Arial, Helvetica, sans-serif;
            }
            iframe {
                position: relative;
                width: 100%;
                height: 75vh;
            }
        </style>
    </head>
    <body>
	    <div id="background"></div>
        <h1>Ebmedded FaceAR Experience through echo3D</h1>
        <iframe src="https://api.echo3D.com/facear?key=<YOUR_API_KEY>"
                allow="camera *">
        </iframe>
    </body>
</html>
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.echo3d.com/facear/embed-into-website-or-app.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
