Embed code pages are used to display external content in a conversation page, e.g.: signup forms, web pages, Google documents, etc.
Embed code examples
Web pages
Replace https://mywebsite.com with the address of the website you want to embed.
<iframe src="https://mywebsite.com" width="100%" height="100%"></iframe>
Google Presentation
To get the embed code for your presentation go to File > Publish to the web > Embed, click Publish and copy the embed code. Then to hide the presentation playback controls, after the part that says delayms=3000 add &rm=minimal (see the example below).
<iframe src="https://docs.google.com/presentation/d/e/2PACX-1vQj7gd4thpdTCTG9d0fmaqS_ZvyyJoZy89YmlGccEA1Cl4--0h3vsg4Fk49gjwn5lPoQTOYIdyeXbb1/embed?start=false&loop=false&delayms=3000&rm=minimal" frameborder="0" width="960" height="569" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"></iframe>
Google Doc (editable)
Change the document's permissions to make it editable by everyone with the link: click Share, Change, Anyone with the link, then Editor. Also make sure the file is in a folder with the same "Anyone with the link can edit" permission. Then copy the document's URL from the browser address bar.
<iframe src="[your document url here]" width="100%" height="100%"></iframe>
Google Doc (non-editable)
In your document go to File > Publish to the web > Embed, click "Publish" and copy the embed code. Then after embedded=true" add width="100%" height="100%" (see the example below).
<iframe src="https://docs.google.com/document/d/e/2PACX-1vSPXPvphFzCPNFmeyY_pSKP8tYhOnLuPPl9Txr-YxINBg5khoyldj2Bv6bWV-v5xSxkv6jfjkj5R_BUvyKT/pub?embedded=true" width="100%" height="100%"></iframe>
[name] & [email] placeholders
Embed code pages support [name] and [email] placeholders, which are dynamically substituted at runtime with the participant's name and email. Useful for example to pre-populate the name and email fields in a signup form with the participant's name and email.