# 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.
