Displaying other website on your domain

Very simple process

Here's how to do it

Remix this or download Here

Insert url between " " line 14

If you want to create it yourself the iframe looks like this
iframe src=""
frameborder="0"
marginheight="0"
marginwidth="0"
width="100%"
height="00%"
scrolling="auto

And the css looks like this
html
{
overflow: auto;
}

html, body, div, iframe
{
margin: 0px;
padding: 0px;
height: 100%;
border: none;
}
iframe
{
display: block;
width: 100%;
border: none;
overflow-y: auto;
overflow-x: hidden;
}

If your site is big you may want to rename both index.html and style.css to custom name so it doesn't disturb your other pages

Enjoy