6 embeddable lead capture tools for real estate websites. Each widget collects leads and fires them directly to the agent's email and LeadShark CRM. One line of code per widget.
1
Add client in Sharkhole Dashboard
Enter agent name, email, brand colour, select widgets
2
Copy their embed code
One snippet per widget, pre-configured with their details
3
Paste into their website
Works on Webflow, WordPress, Squarespace, Wix, any site
4
Leads flow automatically
Agent gets email + lead appears in LeadShark CRM instantly
Live Widgets โ Preview & Embed
How to Embed โ One Line of Code
Each widget is pre-configured per agent via data attributes. Your Sharkhole Dashboard generates this automatically โ just copy and paste into the client's site.
<!-- Home Valuation Widget โ Powered by Sharkhole -->
<div id="sh-widget-home-valuation-jake-miller"></div>
<script>
(function(){
var s = document.createElement('script');
s.src = 'https://tools.sharkhole.ca/home-valuation.html';
s.setAttribute('data-agent', 'jake-miller');
s.setAttribute('data-agent-name', 'Jake Miller');
s.setAttribute('data-brokerage', 'Prestige Realty');
s.setAttribute('data-email', 'jake@prestigerealty.ca');
s.setAttribute('data-color', '#00d4ff');
document.currentScript.parentNode.appendChild(s);
})();
</script>