diff options
Diffstat (limited to 'files/de/glossary/element/index.html')
-rw-r--r-- | files/de/glossary/element/index.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/files/de/glossary/element/index.html b/files/de/glossary/element/index.html new file mode 100644 index 0000000000..49afdf4299 --- /dev/null +++ b/files/de/glossary/element/index.html @@ -0,0 +1,21 @@ +--- +title: Element +slug: Glossary/Element +tags: + - CodingScripting + - Glossar + - HTML +translation_of: Glossary/Element +--- +<p>Ein <strong>Element</strong> ist ein Teil einer Webseite. In XML und HTML kann ein Element Daten, Text, Bilder, oder auch gar nichts enthalten. Ein typisches Element besteht aus einem <strong>öffnenden Tag</strong> mit einigen Attributen, dahinter etwas Text und einem <strong>schließenden Tag</strong>.<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>Elemente und Tags <strong>sind nicht</strong><strong> dasselbe</strong>. Tags beschreiben ein Element im Quellcode, wobei ein Element ein Teil des {{Glossary("DOM")}} ist, dem <strong>Document Model</strong>, mit dessen Hilfe eine Seite im {{Glossary("Browser")}} angezeigt werden kann.</p> + +<h2 id="Siehe_auch">Siehe auch</h2> + +<ul> + <li>Das {{domxref("Element")}} Interface, das ein Element im DOM darstellt.</li> + <li><a href="/de/docs/Web/Guide/HTML/Element">Mehr über Elemente.</a></li> + <li><a href="/de/docs/Web/Web_Components/Custom_Elements">Web_Components/Custom_Elements</a></li> +</ul> |