
- Guida HTML
- HTML - Home
- HTML - Introduzione
- HTML - Tag Basiliari
- HTML - Elementi
- HTML - Attributi
- HTML - Formattazione
- HTML - Tags Phrase
- HTML - Meta Tags
- HTML - Commenti
- HTML - Immagini
- HTML - Tabelle
- HTML - Liste
- HTML - Link Testuali
- HTML - Link nelle Immagini
- HTML - Link ad Indirizzi Email
- HTML - Frame
- HTML - Iframe
- HTML - Blocchi
- HTML - Sfondi
- HTML - Colori
- HTML - Fonts
- HTML - Form
- HTML - Incorporare Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Fogli di Stile
- HTML - Javascript
- HTML - Layout
- HTML Referenze
- HTML - Riferimenti Tag
- HTML - Riferimenti Attributi
- HTML - Riferimenti Eventi
- HTML - Riferimenti Font
- HTML - Codici ASCII
- Tabella Codici ASCII
- HTML - Colori
- HTML - Entità
- HTML - Rif Font
- HTML - Rif Eventi
- MIME Media Types
- HTML - Coifica URL
- Codici Linguaggi ISO
- HTML - Codifica Caratteri
- HTML - Tag Deprecati
- HTML Risorse Utili
- HTML - Color Code Builder
- HTML - Editor Online
Il tag HTML <META>
Funzione
Il tag HTML <meta> viene usato per aggiungere campi metadata al documento HTML.
Differenze tra HTML e XHTML:
In HTML il tag <meta> non ha un tag di chiusura.
In XHTML dev'esserci un tag di chiusura.
Esempio
<html> <head> <title>HTML meta tag</title> <meta name="keywords" content="HTML, meta tag, metadata" /> <meta name="description" content="Brief description of the document" /> <meta http-equiv="refresh" content="10" /> </head> <body style="background-color:orange"> Document content goes here </body> </html>
Per ulteriori informazioni riguardo i Meta Tag vai alla pagina Meta Tag
Attributi
Attributo | Valore | Descrizione |
---|---|---|
Name | author description keywords generator revised others | Il nome della proprietà |
content | text | Definsce le meta informazioni da associare con http-equiv o il nome. |
http-equiv | content-type expires refresh set-cookie | Collega il contenuto dell' attributo ad un header HTTP. |
scheme | text | Defines a format to be used to interpret the value of the content attribute. |
Attributi Standard:
Attributo | Descrizione |
---|---|
dir | Indica la direzione del testo |
lang | Imposta il codice lingua. |
xml:lang | Imposta il codice lingua. |
html_tags_reference.htm
Advertisements