diff options
Diffstat (limited to 'files/it/glossary/doctype')
-rw-r--r-- | files/it/glossary/doctype/index.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/files/it/glossary/doctype/index.html b/files/it/glossary/doctype/index.html new file mode 100644 index 0000000000..6791600c7f --- /dev/null +++ b/files/it/glossary/doctype/index.html @@ -0,0 +1,24 @@ +--- +title: Doctype +slug: Glossary/Doctype +tags: + - DOCTYPE + - HTML +translation_of: Glossary/Doctype +--- +<p>In {{Glossary ("HTML")}}, il doctype è il preambolo "<! DOCTYPE html>" richiesto nella parte superiore di tutti i documenti. Il suo unico scopo è impedire al {{Glossary ("browser")}} di passare alla cosiddetta modalità "quirks mode" durante il rendering di un documento; cioè, il doctype "<! DOCTYPE html>" garantisce che il browser faccia il miglior tentativo di seguire le specifiche pertinenti, piuttosto che utilizzare una modalità di rendering diversa che è incompatibile con alcune specifiche.</p> + +<h2 id="Learn_more">Learn more</h2> + +<h3 id="General_Knowledge">General Knowledge</h3> + +<ul> + <li><a href="https://html.spec.whatwg.org/multipage/syntax.html#the-doctype">Definizione di DOCTYPE nelle specifiche HTML</a></li> + <li><a href="/en-US/docs/Quirks_Mode_and_Standards_Mode">Quirks Mode e Standards Mode</a></li> +</ul> + +<h3 id="Technical_reference">Technical reference</h3> + +<ul> + <li><a href="/en-US/docs/Web/API/Document/doctype">Document.doctype</a>, un metodo JavaScript che ritorna il doctype</li> +</ul> |