# Create landing pages

In order to design landing pages in Page Studio, you will need to create a new **page.studio-landing** template within your Shopify theme.&#x20;

Follow the steps below on how to create this template.

1\. From your Shopify admin, click **Online Store**, then click **Themes.**

2\. Find the theme you want to edit, click the **Actions** button, then click **Edit code.**

<figure><img src="/files/0TGvV9MAdldseY8rQ2tX" alt=""><figcaption></figcaption></figure>

3\. On the left sidebar, click the **Templates** heading, then click on **Add a new file**.

<figure><img src="/files/MmCZQ3TDWoBX98TpkSYy" alt=""><figcaption></figcaption></figure>

4\. Create the template using the following format exactly as it is typed and hit enter to complete creating the file.

<figure><img src="/files/Sl24N1qGwtzWvVbKqWAF" alt=""><figcaption></figcaption></figure>

5\. Replace any code within the new template with the following snippet.

```html
<meta name="viewport" content="width=device-width, initial-scale=1">

{% layout none %}

<body>
  <link href="//studios.cdn.theshoppad.net/pagestudio/blocks.css?v={{ page.metafields.global.version | default: 3 }}&shop={{ shop.permanent_domain }}" rel="stylesheet" type="text/css"/>
  <script src="//studios.cdn.theshoppad.net/pagestudio/pagestudio.dist.js?v={{ page.metafields.global.version | default: 3 }}"></script>
  <div class="studioengine">{{ page.content }}</div>
</body>

<style>
  body {
     margin: 0;
  }

  .is-boxes.slider-image {
    display: block !important;
  }
</style>
```

6\. Save your changes.

Now you'll be able to select this template from the Page Studio dashboard, and use it to create beautiful landing pages!

<figure><img src="/files/nt5EZCMpnghGMzQYcJn0" alt=""><figcaption></figcaption></figure>


---

# 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://shoppad.gitbook.io/pagestudio/readme/create-landing-pages.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.
