M
Meridian Insurance Broker
Live · courier + delivery + taxi

Quotes in 60 seconds,
embedded anywhere.

Drop one snippet onto your courier, delivery or taxi page and start collecting qualified leads with an indicative premium — no redirects, no friction.

60s
avg quote
4
simple steps
3
products live
  • Mobile-first, friction-free flow
  • Server-side validation, rate-limited
  • Leads stored securely in your dashboard
meridianspecialty.example/widget
quick quote

Let's get started

Pick the product you'd like a quote for. More coming soon.

how would you like to quote?

Both options connect to the same rating engine.

02 · install

Embed it anywhere.

Two options. Pick whichever your web team prefers.

option 01recommended

Script tag

One container + one script. Iframe is injected and auto-resizes.

<div id="qc-quote"></div>
<script src="/embed.js" data-target="#qc-quote" defer></script>
option 02

Plain iframe

If you can't add scripts. Resize handler included.

<iframe src="/widget" style="width:100%;border:0;min-height:680px"
  title="Quick quote widget" loading="lazy"></iframe>
<script>
  window.addEventListener('message', function (e) {
    if (e.data && e.data.type === 'qc-quote-resize') {
      var f = document.querySelector('iframe[src*="/widget"]');
      if (f) f.style.height = (e.data.height + 20) + 'px';
    }
  });
</script>
note

If your-site.example.com sets a strict Content-Security-Policy or X-Frame-Options, your web team may need to allow the widget origin () in the frame-src directive.