Pagina 1 di 1

HTML

MessaggioInviato: 6 mar 2009, 21:07
da bob93
Anche se l'HMTL è molto facile da comprendere, ho dei problemi nella generazione di una pagina con i frame....vorrei creare questa pagina:

Immagine



...come devo fare...voglio sapere il soergente html da scrivere???

Re: HTML

MessaggioInviato: 6 mar 2009, 21:34
da c1b8
Codice: Seleziona tutto
<html>
<head>
<title>titolo pagina</title>
</head>

<frameset rows="200, *" border="1" framespacing=0>
<frame src="pippo.html"></frame>
<frameset cols="400,*" border="1" framespacing=0>
<frame src="pippo.html"></frame>
<frame src="pippo.html"></frame>
</frameset>
</frameset>

<noframes>no frame</noframes>
</html>


Naturalmente variando i numeri in rows e cols vari le dimensione dei frame.