> ## Documentation Index
> Fetch the complete documentation index at: https://help.revenuehero.io/llms.txt
> Use this file to discover all available pages before exploring further.

# How to integrate RevenueHero with Custom HTML forms?

> Integrate RevenueHero's scheduler with your Custom HTML form in 4 simple steps

RevenueHero works easily with your custom HTML forms on your landing pages. These steps will show you how to set up RevenueHero widget with your form to convert demos quickly with the Inbound Router!

1. Identify the unique form identifier for your custom HTML Form
2. Set up an [Inbound Router](/routers/inbound/create-inbound-router) in RevenueHero with the form identifier in your form mapping
3. Copy the [installation script](/routers/inbound/create-inbound-router#install-the-script) from the final step of the router set up.
   ```javascript Sample installation script theme={null}
   <script type="text/javascript" src="https://assets.revenuehero.io/scheduler.min.js"></script>
   <script type="text/javascript">
      window.hero = new RevenueHero({ routerId: '123' }); // Use Router ID inplace of 123 here
      hero.schedule('#demo-form'); // custom HTML form ID
   </script>
   ```
4. Paste the snippet below your custom HTML form or just before the `</body>` tag on your landing page

That's it. You're ready to start converting your Demo Meetings 🎉🎉
