aboutsummaryrefslogtreecommitdiff
path: root/files/it/glossary/doctype
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:17 -0500
commitda78a9e329e272dedb2400b79a3bdeebff387d47 (patch)
treee6ef8aa7c43556f55ddfe031a01cf0a8fa271bfe /files/it/glossary/doctype
parent1109132f09d75da9a28b649c7677bb6ce07c40c0 (diff)
downloadtranslated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.gz
translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.bz2
translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.zip
initial commit
Diffstat (limited to 'files/it/glossary/doctype')
-rw-r--r--files/it/glossary/doctype/index.html24
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 "&lt;! DOCTYPE html&gt;" 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 "&lt;! DOCTYPE html&gt;" 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>