Il tag HTML <head>



Descrizione

Il tag HTML <head> è utilizzato per indicare l' intestazione della pagina HTML. I tags che sono inclusi all' interno del tag head non saranno mostrati dal browser.

Esempio

<!DOCTYPE html>
<html>
<head>
<title>HTML head Tag</title>
</head>
<body>
actual content goes here
</body>
</html>

Produrrà il seguente risultato:

actual content goes here

Attributi Specifici

Il tag <head> tag supporta anche i seguenti attributi:

AttributoValoreDescrizione
profile URLSpecifica l' URI/URL di uno o più profili meta data. Non è supportato in HTML5.

Compatibilità Browser

ChromeFirefoxIEOperaSafariAndroid
SiSiSiSiSiSi
html_tags_reference.htm
Advertisements