Il tag HTML <noframes>



Descrizione

Il tag HTML <noframes> è utilizzato per gestire i browser che non supportano il tag <frame>. Serve a mostrare un testo alternativo.

Esempio

<!DOCTYPE html>
<html>
<head>
<title>HTML noframes Tag</title>
</head>
<body>
<frameset cols="200, *">
      <frame src="/html/menu.htm" name="menu_page" />
      <frame src="/html/main.htm" name="main_page" />
      <noframes>
      <body>
      Your browser does not support frames.
      </body>
      </noframes>
   </frameset>
</body>
</html>

Produrrà il seguente risultato, in riferimento all' immagine qui sotto. Il frame sinistro è formato dal file menu.htm e quello destro a main.htm. Se il browser non supporta i frame, mostrerà il seguente messaggio "Your browser does not support frames."

Frametag

Attributi Globali

Questo tag supporta tutti gli attributi globali descritti in - HTML - Referenze Attributi

Compatibilità Browser

ChromeFirefoxIEOperaSafariAndroid
SiSiSiSiSiSi
html_tags_reference.htm
Advertisements