aboutsummaryrefslogtreecommitdiff
path: root/files/de/glossary/element/index.html
blob: 49afdf429975dc5e272d5cb6abcc8a2078ef5580 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 &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>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>