RE:poner informacion de otra pagina en mi pagina
Creas un FRAMESET de HTML y elige uno de los frame que forman tu FrameSet y colocale como src la direccion de la pgaina que quieres que se muestre. Por ejemplo :
<code>
<html>
<head>
<title>Test</title>
</head>
<frameset rows="17%,*" cols="*" framespacing="1" frameborder="yes" border="1" bordercolor="#7BA99F">
<frame src="http://www.microsoft.com" name="titular" frameborder="no" scrolling="NO" noresize marginwidth="0" marginheight="0" id="titular" >
<frame src="http://www.java.sun.com" name="menup" frameborder="yes" scrolling="auto" marginwidth="0" marginheight="0" bordercolor="#83ACA4" id="menup">
</frameset>
<noframes><body>
</body></noframes>
</html>
</code>