aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/html/element/head/index.html
blob: 7c0c8e8598a18474105f6f321a2f73c9b3169dae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
---
title: <head>
slug: Web/HTML/Element/head
tags:
  - HTML head
  - head
translation_of: Web/HTML/Element/head
---
<div>{{HTMLRef}}</div>

<p>O elemento <strong>HTML <code>&lt;head&gt;</code> 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">&lt;html&gt;
  &lt;head&gt;
    &lt;title&gt;Document title&lt;/title&gt;
  &lt;/head&gt;
&lt;/html&gt;
</pre>

<h2 id="Notas">Notas</h2>

<p>Moderno, HTML5-compatível browsers automaticamente constrói um elemento <code>&lt;head&gt;</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', '&lt;head&gt;')}}</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', '&lt;head&gt;')}}</td>
   <td>{{Spec2('HTML5 W3C')}}</td>
   <td>Perfil Obsoleto</td>
  </tr>
  <tr>
   <td>{{SpecName('HTML4.01', 'struct/global.html#h-7.4.1', '&lt;head&gt;')}}</td>
   <td>{{Spec2('HTML4.01')}}</td>
   <td> </td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility">Compatibilidade com navegadores</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>&lt;head&gt;</code> element: {{HTMLElement("title")}}, {{HTMLElement("base")}}, {{HTMLElement("link")}}, {{HTMLElement("style")}}, {{HTMLElement("meta")}}, {{HTMLElement("script")}}, {{HTMLElement("noscript")}}</li>
</ul>