从不同的页面一起获取多个元素

http://justin.derp.us/
http://justin.derp.us/coming-soon.php
http://justin.derp.us/countdown.html

I need all 3 of these pages in one, and I'm having the hardest time getting it done, I've tried iFrames, but to no avail (I can get most of it, but then the buttons at the bottom of the home screen don't appear)

I've tried putting them all into one page, and gotten one big mess: the JavaScript and CSS start doing things together and messing up big time. [eg, the javascript "submit" would mess up the count down, and I'd have two submit buttons and couldn't get the right one to the right size etc etc]

So I'm asking, is there a simple way to do this..?

MockUp

Don't know if its allowed, but I'd gladly compensate anyone who helps me achieve this. [if its not allowed I'll edit this]

I found two things that would need to do if you are taking the iFrame approach:

First, you have to change the background color of your countdown clock page in order for it to look like it belongs with the other components.

Second, in between your "Coming Soon" and "Subscribe" texts, place this code:

<iframe src="countdown.html" width="450" height="130" frameborder="0">
TEXT FOR NON-COMPATIBLE BROWSERS HERE</iframe>

Also, you will need to adjust your CSS stylesheet so that the countdown clock is centered, because it will not be if use leave it like this.

Good luck!