Il tag HTML <noembed>



Descrizione

Il tag HTML <noembed> è utilizzato per gestire i browser che non supportano il tag <embed>. Il tag <noembed> rende possibile fornire del contenuto alternativo per gli utenti che utilizzano browser vecchi.

Esempio

<!DOCTYPE html>
<html>
<head>
<title>HTML noembed Tag</title>
</head>
<body>
<embed src="/html/yourfile.swf" width="200" height="200" >
   <noembed><img src="yourimage.gif" alt="Alternative Media" ></noembed>
</embed>
</body>
</html>

Se il tuo browser non supporta il tag <embed> apparirà il messaggio cotenuto all' interno del tag <noembed>. Così in base al tuo browser potrai vedere il seguente risultato:

<img src="/it/html/images/html.jpg" alt="Alternative Media" />

Compatibilità Browser

ChromeFirefoxIEOperaSafariAndroid
SiSiSiSiSiSi
html_tags_reference.htm
Advertisements