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

# Embed Multiple Landing Pages

Multiple landing pages can be embedded on the same page if so desired. You only need to add the `<script>` to the `<head>` of the page once but you will need to add multiple `<beansid-landing-page>` elements to the page to indicate where the multiple landing pages should be embedded.

If we wanted to embed a French and German landing page on the same page, then we would just do the following in the HTML:

```
<beansid-landing-page
  slug="your-slug"
  territory="de"
></beansid-landing-page>
<beansid-landing-page
  slug="your-slug"
  territory="fr"
></beansid-landing-page>
```

The `<beansid-landing-page>` elements are not required to be next to each other, you can place them anywhere you want to on the page.
