# Landing Page - How to import your site into SprintHub

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

### Step by Step to Import Your Landing Page into Sprinthub

To import your landing page into Sprinthub, follow the steps below:

#### 1. Access the Landing Page Builder

First, log in to your Sprinthub account and navigate to the landing page creation section. Click "Create New Page" to start the process.

<figure><img src="/files/6149819d6769705f13f300acb00ebb2a928f34d2" alt=""><figcaption></figcaption></figure>

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

You will be taken to an initial setup page, where you need to add the page title and Alias:

<figure><img src="/files/182e3b89e087f2915f07529ab994a5d52a07255d" alt=""><figcaption></figcaption></figure>

#### 2. Use the Custom Code Component

Within the landing page builder, you will find several components that can be dragged and dropped to build your page. Look for the "HTML" or similar component that allows insertion of HTML and CSS code.

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

After adding the component, click on it and click on advanced editor:

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

<figure><img src="/files/990c199e28788458cdd2d5eee49a6793ab8a1eb7" alt=""><figcaption></figcaption></figure>

#### 3. Add the HTML and CSS Code

Copy the HTML and CSS code of the landing page you want to import. In the "Custom Code" component, paste that code. Make sure all necessary CSS code is embedded in the HTML, as external links to stylesheets are not allowed.

**Example Code:**

<pre class="language-html"><code class="lang-html"><strong>&#x3C;!DOCTYPE html>
</strong>&#x3C;html lang="en">
&#x3C;head>
    &#x3C;meta charset="UTF-8">
    &#x3C;meta name="viewport" content="width=device-width, initial-scale=1.0">
    &#x3C;title>Minha Landing Page&#x3C;/title>
    &#x3C;style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
        }
        .container {
            width: 80%;
            margin: auto;
            overflow: hidden;
        }
        #main-header {
            background-color: #333;
            color: #fff;
            padding-top: 30px;
            min-height: 70px;
            border-bottom: #77aaff 3px solid;
        }
        #main-header h1 {
            text-align: center;
            text-transform: uppercase;
            margin: 0;
            font-size: 24px;
        }
        #cta {
            margin: 30px;
            text-align: center;
        }
        #cta button {
            background-color: #333;
            color: #fff;
            border: none;
            padding: 15px 20px;
            cursor: pointer;
            font-size: 18px;
        }
        #cta button:hover {
            background-color: #555;
        }
    &#x3C;/style>
&#x3C;/head>
&#x3C;body>
    &#x3C;header id="main-header">
        &#x3C;div class="container">
            &#x3C;h1>Welcome to My Landing Page&#x3C;/h1>
        &#x3C;/div>
    &#x3C;/header>
    &#x3C;section id="cta">
        &#x3C;div class="container">
            &#x3C;h2>Call to Action&#x3C;/h2>
            &#x3C;button>Click Here&#x3C;/button>
        &#x3C;/div>
    &#x3C;/section>
&#x3C;/body>
&#x3C;/html>
</code></pre>

After adding, preview the changes on your page:

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

#### 4. Preview and Adjust

After adding the code, preview your landing page to ensure everything is working as expected. Make the necessary adjustments directly in the code inside the "Custom Code" component.

#### 5. Save and Publish

After confirming that your landing page is correctly configured and visually appealing, save your changes. Finally, publish the page to make it accessible to your leads and visitors.

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

### Conclusion

Importing your landing page into Sprinthub is a simple process that offers great flexibility and customization. By using the "Custom Code" component, you can integrate your HTML and CSS directly into the landing page builder, keeping full control over your page's design and functionality. Follow the steps mentioned and make the most of Sprinthub's features to create effective and attractive landing pages.

If you have any questions or need assistance, our support team is always available to help. Good conversions!

***

We hope this guide has been helpful in understanding how to import your landing page into Sprinthub. For more tips and tutorials, keep following our blog and stay tuned for updates!


---

# 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.sprinthub.com/en/topics/attract/landing-page/landing-page-how-to-import-your-site-into-sprinthub.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.
