- Open the HTML for the page your customers reach on your website after they've completed a conversion—the "Thank you for your order" page, for example. This is called the conversion page.
- Between the body tags (
<body></body>
) of the page, paste your conversion pixel. (If you haven't already, follow these instructions to create your pixel.) - Save the changes to your webpage. And that's it!
Here's the HTML for a very simple webpage:
<html> <head> <title>Sample HTML File</title> </head> <body> Paste your conversion tracking tag here. </body> </html>
Here's the same webpage after the conversion tracking tag has been added (sample only—this code won't work on your website):
<html> <head> <title>Sample HTML File</title> </head> <body> <img src="https://snip.ly/services/pixel/example/" height=1 width=1 border=0 /> </body> </html>