> For the complete documentation index, see [llms.txt](https://docs.frontnow.com/advise/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.frontnow.com/advise/2/introduction/getting-started.md).

# Getting started

## Integration Steps

### Step 1: Get the Frontnow Advisor Code

To start using the Frontnow Advisor, you will need to sign up for an account and obtain a subdomain. Once you have your subdomain, you can add the Advisor to your website by including our JavaScript library in your code and initializing the widget with your subdomain.

### Step 2: Embed the Code

Once you have the code, you can embed it into your website. You can place the code in the header or footer of your website, depending on your preference. The Frontnow Advisor will then appear on your website and provide personalized recommendations to your users.

Here's an example code snippet that demonstrates how to integrate the Frontnow Advisor into your website using the advisor.js library:

```html
<!DOCTYPE html>
<html>
<head>
    <title>My Website</title>
    <!-- Include Frontnow Advisor library at the end of <body> -->
    <script src="https://cdn.frontnow.site/advisor.js"></script>
    <script>
        // Initialize Frontnow Advisor
        const advisor = new Advisor({
            subdomain: "YOUR_ADVISOR_SUBDOMAIN"
        });
    </script>
</head>
<body>
    <!-- Your website content here -->
</body>
</html>
```

Replace `YOUR_ADVISOR_SUBDOMAIN` with your Frontnow Advisor subdomain, which you can obtain by signing up for an account on our website.

Once you've added this code to your website, the Advisor will be available to your visitors and they'll be able to receive personalized recommendations and guidance as they browse your site. You can customize the appearance and behavior of the Advisor using [additional configuration options](/advise/2/integration/overview.md) and [styles](/advise/2/customization/branding.md) as needed.

### Step 3: Customize the Frontnow Advisor

We understand that every website is unique, and that's why we've made it easy to customize the appearance and behavior of the Advisor to fit your brand and user experience. With our intuitive customization options, you can change the color scheme, language, and layout of the widget, as well as specify which types of recommendations and guidance you want to provide.

You can customize the Frontnow Advisor to match the look and feel of your website. You can change the colors, fonts, and layout to match your brand. This will ensure that the widget seamlessly integrates with your website and provides a consistent user experience.

<table data-card-size="large" data-view="cards"><thead><tr><th></th><th data-hidden data-card-target data-type="content-ref"></th></tr></thead><tbody><tr><td><strong>->  See all customization options</strong></td><td><a href="/pages/wSegeMwppiACEWhiyAVe">/pages/wSegeMwppiACEWhiyAVe</a></td></tr></tbody></table>

### Step 4: Test the Frontnow Advisor

Before launching the Frontnow Advisor, it is important to test it to ensure that it is working properly. You can test the widget by navigating through your website and ask questions and look at the suggestions provided by the Frontnow Advisor. Make sure that the suggestions are relevant and accurate.

### Conclusion

The Frontnow Advisor is a powerful tool that can help improve the user experience on your website. By providing personalized recommendations, you can engage your users and encourage them to stay on your website longer. By following the above steps, you can easily integrate the Frontnow Advisor into your website and customize it to match your brand.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.frontnow.com/advise/2/introduction/getting-started.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
