Ecco un esempio semplice che ti permette di avere due siti in un'unica pagina.
index.htm
<html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title>iframe</title> </head> <frameset rows="115,*"> <frame name="main" src="main.htm" scrolling="no" marginwidth="0" marginheight="0"> <frame name="sito"> <noframes>Il tuo browser non supporta i frame.</noframes> </frameset> </html> ```main.htm<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Tua Pagina</title>
</head>
<body>
<p><a href="http://www.sito.it/" target="sito">www.sito.it</a></p>
</body>
</html>