diff options
Diffstat (limited to 'files/pt-br/web/html/element/head/index.html')
-rw-r--r-- | files/pt-br/web/html/element/head/index.html | 153 |
1 files changed, 153 insertions, 0 deletions
diff --git a/files/pt-br/web/html/element/head/index.html b/files/pt-br/web/html/element/head/index.html new file mode 100644 index 0000000000..a8ad153397 --- /dev/null +++ b/files/pt-br/web/html/element/head/index.html @@ -0,0 +1,153 @@ +--- +title: <head> +slug: Web/HTML/Element/head +tags: + - HTML head + - head +translation_of: Web/HTML/Element/head +--- +<div>{{HTMLRef}}</div> + +<p>The <strong>HTML <code><head></code> elemento providencia informações gerais</strong> (metadados) sobre document, incluindo seu título e links para scripts e folhas de estilos.</p> + +<table class="properties"> + <tbody> + <tr> + <th><a href="/en-US/docs/Web/HTML/Content_categories">Categoria de conteúdo</a></th> + <td>Nenhuma.</td> + </tr> + <tr> + <th>Conteúdo permitido</th> + <td> + <p>Se o elemento é um {{HTMLElement("iframe")}}</p> + + <p>{{htmlattrxref("srcdoc", "iframe")}}, ou se a informação do título está sendo avaliada desde um nivel alto do protocolo, zero ou mais elementos de conteúdo de metadados.</p> + + <p>Por outro lado, um ou mais elementos de conteúdo de metadados onde exatamente um é um {{HTMLElement("title")}} elemento.</p> + </td> + </tr> + <tr> + <th>Omissão de tag</th> + <td> + <p>A tag inicial pode ser omitida se a primeira coisa dentro do head elemento é um elemento.</p> + + <p>A tag final pode ser omitida se a primeira coisa seguindo o elemento head não é um caractere espaço ou um comentário.</p> + </td> + </tr> + <tr> + <th>Elementos parentes permitidos</th> + <td>Um {{HTMLElement("html")}} elemento, como primeiro filho.</td> + </tr> + <tr> + <th>DOM interface</th> + <td>{{domxref("HTMLHeadElement")}}</td> + </tr> + </tbody> +</table> + +<h2 id="Attributos">Attributos</h2> + +<p>Estes elementos incluem os <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes">atributos</a> globais.</p> + +<dl> + <dt>{{htmlattrdef("profile")}} {{obsolete_inline}}</dt> + <dd>A URIs de um ou mais perfis de metadados , separado por espaço em branco.</dd> +</dl> + +<h2 id="Exemplo">Exemplo</h2> + +<pre class="brush: html"><html> + <head> + <title>Document title</title> + </head> +</html> +</pre> + +<h2 id="Notas">Notas</h2> + +<p>Moderno, HTML5-compatível browsers automaticamente constrói um elemento <code><head></code> se as tags forem omitidas na marcação. <a href="http://www.stevesouders.com/blog/2010/05/12/autohead-my-first-browserscope-user-test/">Este comportamento não pode ser garantido por browsers antigos.</a></p> + +<p>Especificações</p> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Especificação</th> + <th scope="col">Estado</th> + <th scope="col">Comentário</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('HTML WHATWG', 'semantics.html#the-head-element', '<head>')}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td>Nenhuma mudança desde o último shapshot</td> + </tr> + <tr> + <td>{{SpecName('HTML5 W3C', 'document-metadata.html#the-head-element', '<head>')}}</td> + <td>{{Spec2('HTML5 W3C')}}</td> + <td>Perfil Obsoleto</td> + </tr> + <tr> + <td>{{SpecName('HTML4.01', 'struct/global.html#h-7.4.1', '<head>')}}</td> + <td>{{Spec2('HTML4.01')}}</td> + <td> </td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilidade_do_Browser">Compatibilidade do Browser</h2> + +<p>{{CompatibilityTable}}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Componentes</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari (WebKit)</th> + </tr> + <tr> + <td>Support básico</td> + <td>1.0</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatVersionUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>IE Phone</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatVersionUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<h2 id="See_also">See also</h2> + +<ul> + <li>Elementos que podem ser usados dentro de um <code><head></code> element: {{HTMLElement("title")}}, {{HTMLElement("base")}}, {{HTMLElement("link")}}, {{HTMLElement("style")}}, {{HTMLElement("meta")}}, {{HTMLElement("script")}}, {{HTMLElement("noscript")}}</li> +</ul> |