Add a professional, interactive quote builder to your website in minutes. Works on any platform.
Add these two lines anywhere on your website where you want the quote builder to appear:
<!-- AppWT Quote Builder -->
<div id="appwt-quote-builder" data-industry="lawn-care"></div>
<script src="https://appwt.com/quote-builders/embed/appwt-quote-builder.js"></script>
Choose the industry that matches your business:
lawn-care
junk-removal
cleaning-service
snow-removal
pressure-washing
home-repair
moving-service
catering-events
Customize the quote builder with these data attributes:
| Attribute | Description | Example |
|---|---|---|
data-industry |
The type of quote builder (required) | lawn-care |
data-color |
Primary color (hex code) | #22c55e |
data-company |
Your company name | Acme Lawn Care |
data-phone |
Your phone number | (555) 123-4567 |
data-email |
Your email address | info@example.com |
data-height |
Fixed height (auto-adjusts by default) | 800px |
<div id="appwt-quote-builder"
data-industry="cleaning-service"
data-color="#06b6d4"
data-company="Sparkle Clean Co."
data-phone="(555) 123-4567"
data-email="quotes@sparkleclean.com"></div>
<script src="https://appwt.com/quote-builders/embed/appwt-quote-builder.js"></script>
If you prefer, you can also use a simple iframe:
<iframe
src="https://appwt.com/quote-builders/lawn-care/embed.php"
width="100%"
height="700"
frameborder="0"
title="Get a Free Quote"></iframe>
Our embed code is compatible with all major website platforms:
We can create a quote builder tailored to your specific services and pricing.
Contact UsFor advanced users, you can interact with the quote builder programmatically:
// Refresh the quote builder
AppWTQuoteBuilder.refresh();
// Switch to a different industry
AppWTQuoteBuilder.setIndustry('cleaning-service');
// Listen for form submissions
document.getElementById('appwt-quote-builder').addEventListener('appwtQuoteSubmit', function(e) {
console.log('Quote submitted:', e.detail);
});