# Custom domain

Let’s say that your Community homepage is <https://sesamelabs.xyz/sesame/?tab=home>. If you'd like to serve it from your own domain, i.e. `yourdomain.xyz/quests` add an HTML page on your domain that looks something like this.

```html
<!doctype html>
<html lang="en">
    <head>
        <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0;" />
        <link rel="icon" type="image/png" href="/exploding-head.png">
        <title>Sesame Labs Quests</title>
        <style>
* {margin: 0; padding: 0; border: none}
html, body {overflow: hidden}
html, body, iframe {height: 100%; width: 100%}
        </style>
    </head>
    <body>
        <iframe id="sesame-app" src="https://sesamelabs.xyz/sesame/?tab=home" frameborder="0"></iframe>
    </body>
</html>
```

**Note:** Set the `title` of the page attribute, add your own favicon (`link href)`, and update the `iframe` src attribute to the Sesame Labs's community homepage url.


---

# 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.sesamelabs.xyz/product-guides/white-label-options/custom-domain.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.
