
- 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 <basefont>
Descrizione
Il tag HTML <basefont> è utilizzato per impostare un font (carattere) base per il documento. Esso viene impostato in tutto il documento. Questo tag è stato deprecato.
Esempio
<!DOCTYPE html> <html> <head> <title>HTML basefont Tag</title> </head> <body> <basefont face="cursive,serif" color="#ff9900" size="4"/> <p>The HTML basefont tag is now deprecated. You should use CSS font to set font properties instead.</p> </body> </html>
Produrrà il seguente risultato:
The HTML basefont tag is now deprecated. You should use CSS font to set font properties instead.
This result may vary browser to borwser.
Attributi Globali
Questo tag supporta tutti gli attributi globali descritti in - HTML - Referenze Attributi
Attributi Specifici
The HTML <basefont> supporta anche i seguenti attributi aggiuntivi:
Attributo | Valore | Descrizione |
---|---|---|
color | rgb(x,x,x) #xxxxxx colorname | Deprecato - Imposta il colore del testo. |
face | font names separated by comma | Deprecato - Specifica il font family del testo. |
size | 1 to 7 | Deprecato - Specifica la dimensione del testo. |
Attributi Evento
Questo tag supporta tutti gli attributi evento descritti in - HTML - Referenze Eventi
Compatibilità Browser
Chrome | Firefox | IE | Opera | Safari | Android |
---|---|---|---|---|---|
Non Supportato | Non Supportato | Si | Non Supportato | Non Supportato | Non Supportato |
html_tags_reference.htm
Advertisements