Add the scheduling form to any website with a simple embed code
This is how the booking section will appear on your website:
Book your appointment online in under 2 minutes. Choose your date, time, and services instantly.
[Your scheduling form will appear here as an embedded iframe]
<!-- TV Mounting Booking Section -->
<div style="max-width: 800px; margin: 0 auto; padding: 40px 20px;">
<h2 style="font-size: 32px; font-weight: bold; color: #0c4466; margin-bottom: 16px; text-align: center;">
Schedule Your TV Mounting Service
</h2>
<p style="font-size: 18px; color: #666; margin-bottom: 32px; text-align: center;">
Book your appointment online in under 2 minutes. Choose your date, time, and services instantly.
</p>
<iframe
id="bookingIframe"
style="width: 100%; height: 1200px; border: none; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1);"
title="Schedule TV Mounting Appointment"
></iframe>
</div>
<script>
// Extract gclid from current page URL and pass to iframe
(function() {
var params = new URLSearchParams(window.location.search);
var gclid = params.get('gclid');
var baseUrl = 'https://ttmountingschedule.base44.app/SchedulingForm';
var iframeSrc = baseUrl;
// Append gclid to iframe URL if it exists
if (gclid) {
iframeSrc += '?gclid=' + encodeURIComponent(gclid);
}
// Set iframe src
document.getElementById('bookingIframe').src = iframeSrc;
})();
</script>Note: Simply copy this code and paste it into your website's HTML where you want the booking form to appear.
💡 Pro Tip: Make sure the page where you embed the form has enough vertical space (at least 1200px) to display the entire booking process without excessive scrolling.
If you need assistance embedding the booking form on your website or have questions about customization, feel free to reach out.
The booking form is fully responsive and will work seamlessly on desktop, tablet, and mobile devices.