It is possible to embed one of your Brokerkit landing pages into another web page (e.g., a careers page on your broker IDX listing website) via an iframe in the HTML. Please follow the directions below, which detail how to do that.
To find the URL of your landing page:
- Log in to Brokerkit.
- Click on Landing Page located in the menu on the left-hand side of your home page.
- Copy Team/My Landing Page URL.
An iframe HTML tag can be used to add the landing page's content to your site.
HTML snippet which you can add to your existing website page:
<frameset rows="100%,*" border="0">
<frame src="https://getbrokerkit.com/t/bk-sales" frameborder="0" />
</frameset>
Full HTML code of the page:
<html>
<head>
<title>Your title here</title>
</head>
<frameset rows="100%,*" border="0">
<frame src="https://getbrokerkit.com/t/bk-sales" frameborder="0" />
</frameset>
</html>
Please go here for a general reference on HTML syntax for iframes.