PDA

View Full Version : [HTML] due iframe nell'home


andrew4
22-03-2012, 17:20
sto cercando di aggiungere due iframe nell'home, non so perchè me ne visualizza solo 1, ecco il codice:

</head>
<body style="margin: 5;">
</div>
<iframe src="code.php" width=100% height=5%>
</div>
<hr width=100% size=3 color=#666666>
</div>
<iframe src="http://www.virgilio.it" width=100% height=90%>
</div>
</body>
</html

Efem
25-03-2012, 09:54
Perchè chiudi tre div se non ne hai aperto nessuno?

Prova così

<body style="margin: 5;">
<div>
<iframe src="code.php" width=100% height=5%>
</div>
<hr width=100% size=3 color=#666666>
<div>
<iframe src="http://www.virgilio.it" width=100% height=90%>
</div>
</body>
</html>