Skip to main content

How to embed custom code or script to your website?

Learn how to add custom code and script to your whole website.

Updated over 2 years ago

Note: all scripts added in these sections will be loaded on all pages. If you want to embed code to a single page, follow this documentation.

To add custom code to your website, first, navigate to your Dashboard select website, next pick Website settings, and select Embed code:

Head code

You can add additional scripts between <head></head> tags on your page

e.g. code

<script src="http://yourdomain.com/file.js" type="text/javascript" />

Body code:

Use this to add additional code after opening <body> tag on your page

e.g. code

<style>
body {
background-color: blue;
}
</style>

Footer code:

Use this to add additional code before closing </body> tag on your page

e.g. code

<style>
body {
background-color: blue;
}
</style>

Did this answer your question?