How to Embed Event Registration

The easiest method for embedding your RaceHub registration page on another page is by using a simple link.  For example: https://racehubhq.com/races/RBCTrainingGroundCanadaGamesTesting 

 It is also possible to use an iframe.  An iframe is used to display a web page within a web page.

Iframe Syntax

The syntax for adding an iframe is:

<iframe src=" URL"></iframe>

The src attribute specifies the URL (web address) of the iframe page.

For example: https://racehubhq.com/races/RBCTrainingGroundCanadaGamesTesting

Iframe - Set Height and Width

Use the  height and width attributes to specify the size.

The attribute values are specified in pixels by default, but they can also be in percent (like "80%").

Example

<iframe src=" https://racehubhq.com/races/RBCTrainingGroundCanadaGamesTesting" width="200" height="200"></iframe>

Iframe - Remove the Border

The frameborder attribute specifies whether or not to display a border around the iframe.

Set the attribute value to "0" to remove the border:

Example

<iframe src=" https://paddleguru.com/races/SurftoSound2014/register" frameborder="0"></iframe>

You can use iframes to embed any aspect of the RH site including start lists, results, registration pages etc....