HTML - Tag <noframes>
Descrizione
Il tag HTML <noframes> viene utilizzato per gestire i browser che non supportano il tag <frame>. Questo tag viene utilizzato per visualizzare un messaggio di testo alternativo.
Esempio
<!DOCTYPE html>
<html>
<head>
<title>HTML noframes Tag</title>
</head>
<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>
</html>
Questo produrrà il seguente risultato, fare riferimento all'immagine fornita di seguito. Il frame di sinistra è menu.htm e quello di destra è main.htm. Se il browser non supporta i frame, verrà visualizzato il messaggio "Il tuo browser non supporta i frame".
Attributi globali
Questo tag supporta tutti gli attributi globali descritti in - Riferimento agli attributi HTML
Supporto browser
Cromo | Firefox | IE | musica lirica | Safari | Android |
---|---|---|---|---|---|
sì | sì | sì | sì | sì | sì |