
- 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 <track>
Descrizione
Il tag HTML <track> serve per impostare etichette, sottotitoli o altri contenuti per i tag <audio> e <video>
<!Doctype html> <html> <head> <title>HTML source Tag</title> </head> <body> <audio controls> <source src = "yourfile.mp3"> <track src = "subtitles.vtt" kind="subtitles" srclang="en" label="English"> <p>:The browser doesnot support the file</p> </audio> </body> </html>
Produrrà il seguente risultato:
Attributi Globali
Questo tag supporta tutti gli attributi globali descritti in - HTML - Referenze Attributi
Attributi Specifici
Il tag HTML <track> supporta anche i seguenti attributi aggiuntivi:
Attribute | Value | Descrizione |
---|---|---|
default ![]() |
default | uses the default track |
kind ![]() |
captions chapters descriptions metadata subtitles |
tipo di elemento da utilizzare |
label ![]() |
text | mostra un titolo | src ![]() |
URL | URL del file track | srclang class="inline" ![]() |
language_code | indica la lingua del testo |
Attributi Evento
Questo tag supporta tutti gli attributi evento descritti in - HTML - Referenze Eventi
Compatibilità Browser
Chrome | Firefox | IE | Opera | Safari | Android |
---|---|---|---|---|---|
Si | Si | Si | Si | Si | Si |
html_tags_reference.htm
Advertisements