aboutsummaryrefslogtreecommitdiff
path: root/files/pt-pt/glossary/element/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pt-pt/glossary/element/index.html')
-rw-r--r--files/pt-pt/glossary/element/index.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/files/pt-pt/glossary/element/index.html b/files/pt-pt/glossary/element/index.html
new file mode 100644
index 0000000000..4acc682ed0
--- /dev/null
+++ b/files/pt-pt/glossary/element/index.html
@@ -0,0 +1,20 @@
+---
+title: Elemento
+slug: Glossário/Elemento
+tags:
+ - CodingScripting
+ - Glossário
+ - HTML
+translation_of: Glossary/Element
+---
+<p>Um elemento faz parte de uma página da Web. Em XML e HTML, um elemento pode conter um item de dados ou parte de texto ou uma imagem, ou talvez nada. Um elemento típico inclui uma <em>tag</em> de abertura com alguns atributos, conteúdo de texto fechado e uma <em>tag</em> de fecho.<img alt="Example: in &lt;p class=&quot;nice&quot;>Hello world!&lt;/p>, '&lt;p class=&quot;nice&quot;>' is an opening tag, 'class=&quot;nice&quot;' is an attribute and its value, 'Hello world!' is enclosed text content, and '&lt;/p>' is a closing tag." src="https://mdn.mozillademos.org/files/7659/anatomy-of-an-html-element.png" style="height: 181px; width: 609px;"></p>
+
+<p>Elementos e <em>tags</em> não são a mesma coisa. <em>Tags</em> começam e terminam um elemento no código fonte, onde os elementos são parte de {{Glossary("DOM")}}, o documento modelo para exibir a página no {{glossary("browser","navegador")}}.</p>
+
+<h2 id="Consultar_também">Consultar também</h2>
+
+<ul>
+ <li>A interface {{domxref("Element","Elemento")}}, representando um element no DOM.</li>
+ <li><a href="/en-US/docs/Web/Guide/HTML/Element">Mais detalhes sobre os elementos</a></li>
+ <li><a href="https://developer.mozilla.org/en-US/docs/Web/Web_Components/Custom_Elements">Web_Components/Custom_Elements</a></li>
+</ul>