Dunque, facciamo un pò di chiarezza sull'uso dei frame.
La pagina principale, cioè quella che deve contenere i frame, contiene del codice tipo:
[html]<FRAMESET cols="20%, 80%">
<FRAMESET rows="100, 200">
<FRAME src="frame1.html">
<FRAME src="frame2.html">
</FRAMESET>
<FRAME src="frame3.html">
</FRAMESET>[/html]In questo esempio abbiamo 2 frameset (cioè insiemi di frame): il primo contiene a sua volta il secondo frameset e un frame (frame3.html). Il secondo frameset contiene 2 frame (frame1.html e frame2.html).
Detto questo, è la pagina che contiene questo tipo di codice a cui devi impostare il titolo voluto tramite il tag "title".
Spero di essere stato chiaro.
Ciao