<head>
(tag HTML) ospita i tag HTML <base>
, <link>
, <meta>
, <noscript>
, <script>
, <style>
, <title>
, attraverso i quali stabilisce i riferimenti delle librerie, degli stili, il titolo ed altre informazioni della pagina web.
attributi
speciali
Nessuno.
globali
Caricamento…
scheda tecnica
– Categoria: nessuna
– Tipo: invisibile
– Intefraccia DOM: HTMLHeadElement
– Supporto browser: totale
Sintassi
<head> [oggetto] </head>
Default CSS
head { display: none; }
Esempio
<!DOCTYPE html> <html> <head> <title></title> <meta> <link> <style> <script></script> </head> <body> </body> </html>
0 Comment