How do I embed another page using iFrame into my web page?
In this tutorial, we will show you how to embed another page into your web page. This integration is implemented using iFrame.

Step 1. Launch the HTML Egg App and navigate to the web page you wish to update

Step 2. Tap on the Add New (+) button on the toolbar and choose "HTML Snippet"

Step 3. Single tap on the newly added HTML Snippet box and then drag on the resize bars to make the box larger. You want to size it to the same dimension as you wish the embedded page to occupy

Step 4. Double tap on the HTML Snippet box and paste in the following code:
<iframe src="https://www.aidaluu.com" frameborder="0" width="100%" height="100%" scrolling="no" allowfullscreen></iframe>
Please replace ""https://www.aidaluu.com" with the URL of the web page you wish to embed

And you are done! :) Publish this web page to check out your embedded page!

Tip: Using the above code, the embedded page defaults to 100% as height, this means it will show all of the content as it naturally requires on the page. If your design requires the embedded page to be framed in a specific box size, try tweaking this to a limited number (1000, 1200, etc)