Style issues when embedding form

When I embed my form on my website, it loads, but there are style issues with alignment and color. My guess is that there are conflicting CSS rules on my website. How do I embed my form in an iFrame to avoid those style issues?

You just have to pass your form URL into the src attribute of an iframe element, like:

<iframe src="YOUR FORM URL" />

You’ll want to make sure the iframe dimensions are consistent with those of your form as well (e.g. pass in width="100%" and height="100%" as attributes to the iframe component