Originariamente inviato da orco
incredibile... non mi resta che provare a salvarmi quella pagina e metterci il sito dentro, non so cos'altro pensare. o sono pazzo, o è dreamweaver che sfarfalla...
ora mi cimento...
Guarda che il codice della pagina è sporco perchè Libero aggiunge codice proprio
il codice giusto è questo
:
frame.htm
codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento senza titolo</title>
</head>
<frameset cols="*,*" frameborder="no" border="0" framespacing="0">
<frame src="link.htm" name="left" id="left" title="left" />
<frame src="null.htm" name="right" id="right" title="right" />
</frameset>
<noframes><body>
</body>
</noframes></html>
ok.htm
codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento senza titolo</title>
<style type="text/css">
<!--
#ok {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 100px;
font-weight: bolder;
text-decoration: none;
width: auto;
position: absolute;
height: auto;
left: 50%;
top: 50%;
margin: -100px 0 0 -100px;
}
-->
</style>
</head>
<body>
<div id="ok">OK!</div>
</body>
</html>
link.htm
codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento senza titolo</title>
<style type="text/css">
<!--
#link {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 100px;
font-weight: bolder;
text-decoration: none;
width: auto;
position: absolute;
height: auto;
left: 50%;
top: 50%;
margin: -100px 0 0 -100px;
}
-->
</style>
</head>
<body>
<div id="link">Link</div>
</body>
</html>
null.htm
codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento senza titolo</title>
<style type="text/css">
<!--
#null {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 100px;
font-weight: bolder;
text-decoration: none;
width: auto;
position: absolute;
height: auto;
left: 50%;
top: 50%;
margin: -100px 0 0 -100px;
}
-->
</style>
</head>
<body>
<div id="null">nulla</div>
</body>
</html>