Guide for Embedding Our Pages

For Existing Users

If you already have embedded our old URL, it's straightforward to change the code. You simply need to change the iframe src value.

Change this:

<iframe src="https://www.choosebrisbane.com.au/conventions/conferencewebsite" allowfullscreen frameborder=0></iframe>
	

To this (with accommodation):

<iframe src="https://choose.brisbane.qld.au/destination-iframe" allowfullscreen frameborder=0></iframe>
	

Or this (without accommodation):

<iframe src="https://choose.brisbane.qld.au/beda-iframe" allowfullscreen frameborder=0></iframe>
	

For New Users

Place the following code in the place where you would place HTML.

With accommodation:

<div style="position:relative;width:100%;height:100%;">
    <iframe src="https://choose.brisbane.qld.au/destination-iframe" style="position:absolute;top:0;left:0;width:100%;height:100%;" allowfullscreen frameborder="0"></iframe>
</div>
	

Without accommodation:

<div style="position:relative;width:100%;height:100%;">
    <iframe src="https://choose.brisbane.qld.au/beda-iframe" style="position:absolute;top:0;left:0;width:100%;height:100%;" allowfullscreen frameborder="0"></iframe>
</div>