Custom Script Tag

Adyoulike custom script tag is pretty easy to implement in a website.

With this method, you will have a <script> tag with a src attribute which will allow you to add a script to your website. The URL of the script will usually look like this:

  • https://pixels.omnitagjs.com/[path-to-the-pixel].js

When you’ll receive the confirmation that the file is created, you will have to add the script in the body of your website.

Example:

<html> <head> <title>Hello World!</title> </head> <body> <script type="text/javascript" src="https://pixels.omnitagjs.com/[path-to-the-pixel].js"></script> </body> </html>