diff options
author | Florian Merz <me@fiji-flo.de> | 2021-02-11 14:49:58 +0100 |
---|---|---|
committer | Florian Merz <me@fiji-flo.de> | 2021-02-11 14:49:58 +0100 |
commit | 68fc8e96a9629e73469ed457abd955e548ec670c (patch) | |
tree | 8529ab9fe63d011f23c7f22ab5a4a1c5563fcaa4 /files/pt-br/glossary/element | |
parent | 8260a606c143e6b55a467edf017a56bdcd6cba7e (diff) | |
download | translated-content-68fc8e96a9629e73469ed457abd955e548ec670c.tar.gz translated-content-68fc8e96a9629e73469ed457abd955e548ec670c.tar.bz2 translated-content-68fc8e96a9629e73469ed457abd955e548ec670c.zip |
unslug pt-br: move
Diffstat (limited to 'files/pt-br/glossary/element')
-rw-r--r-- | files/pt-br/glossary/element/index.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/files/pt-br/glossary/element/index.html b/files/pt-br/glossary/element/index.html new file mode 100644 index 0000000000..70420db414 --- /dev/null +++ b/files/pt-br/glossary/element/index.html @@ -0,0 +1,21 @@ +--- +title: Elemento +slug: Glossario/Elemento +tags: + - Codificação de Scripts + - Glossário + - HTML +translation_of: Glossary/Element +--- +<p>Um elemento é parte de uma página web. Em XML e HTML, um elemento pode conter um item de dados, ou um bloco de texto, ou uma imagem, ou talvez nada. Um elemento típico inclui uma tag de abertura com alguns atributos, o conteúdo de texto incluído e uma tag de fechamento.<br> + <img alt="Example: in <p class="nice">Hello world!</p>, '<p class="nice">' is an opening tag, 'class="nice"' is an attribute and its value, 'Hello world!' is enclosed text content, and '</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 tags não são a mesma coisa. As tags começam ou terminam um elemento no código fonte, enquanto os elementos são parte do {{Glossary("DOM")}}, o modelo do documento para exibir a página no {{glossary("browser", "navegador")}}.</p> + +<h2 id="Veja_também">Veja também</h2> + +<ul> + <li>A interface {{domxref("Element")}}, representando um elemento no DOM.</li> + <li><a href="https://developer.mozilla.org/pt-BR/docs/Aprender/HTML/Introducao_ao_HTML/Getting_started">Mais detalhes sobre elementos.</a></li> + <li><a href="https://developer.mozilla.org/pt-BR/docs/Web/Web_Components/Usando_elementos_customizados">Componentes Web / Elementos Customizados</a></li> +</ul> |