How to add Future Family sign up to your website

The simplest way to integrate with a third party website is to present the sign up inside an IFrame. IFrame embedding is used for sharing content between different domains, this means that a website can freely request the selected resources from a separate website and iterate with it, but is restricted from manipulating the element or code itself.

The traditional way to do it is by adding the HTML attribute <iframe> to your website. The basic syntax is shown below:

<iframe src="https://embed.futurefamily.com/signup.html" width= "600px" height="750px" frameborder="0"></iframe>

How to configure it

You can parametrize the window that embed the IFrame by using the following parameters:

  • Width/Height – Set the height and width of the iFrame window, set the value in pixels (px).
  • Frameborder – For displaying or hiding the IFrame border, use values 0 or 1.
  • Align – Define the window’s page alignment. Use values left, right, top or bottom.
  • Scrolling – Disable or enable scrolling inside the IFrame. Use values yes or no. This can be done using CSS attributes aswell.

How it looks