> ## Documentation Index
> Fetch the complete documentation index at: https://docs.baenninger.me/llms.txt
> Use this file to discover all available pages before exploring further.

# Elemente

```html theme={null}
<tagname>Content...</tagname>
```

## Verschachtelte Elemente

Elemente können in andere Elemente platziert werden. Das wird als **Nesting** bezeichnet.

```html theme={null}
<p>My cat is <strong>very</strong> grumpy.</p>
```

<Info>
  Wichtig ist, dass wir das Element in dem anderen Element **als erstes schliessen**. Folgendes wäre falsch:

  ```html theme={null}
  <p>My cat is <strong>very grumpy.</p></strong>
  ```
</Info>

## Leere Elemente

Nicht alle Elemente folgen dem Schema oben. Es gibt auch sogenannte self-closing Tags. Diese haben weder einen Inhalt noch ein Closing Tag.

```html theme={null}
![Firefox icon](https://shorturl.at/ehrvO)
```
