How to add a landing page from BrokerKit to your site with iframes

 

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:

  1. Log in to Brokerkit. 
  2. Click on Landing Page located in the menu on the left-hand side of your home page.
  3. Copy Team/My Landing Page URL.

Screen_Shot_2021-04-23_at_2.13.32_PM.png

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.