I have a website and wish to embed a real-time website
livefromspace.com on my website, so that user can interact with it in real-time

When I try the following iframe code on
Fiddle
<style>
.embed-container
{
;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>
<div class='embed-container'>
<iframe src='http://livefromspace.com' frameborder='0' allowfullscreen>
</iframe>
</div>
I only get the introductory page. Please tell me how to fix this!!!!!
