2
0

add Listen

This commit is contained in:
Schuledaniel
2025-10-14 15:24:14 +02:00
parent e5537e1ba2
commit d7690f3aa8
2 changed files with 56 additions and 1 deletions

View File

@@ -3,8 +3,12 @@
## Gemacht
*Wir warscheinlich nie aktuell aber egaaaal*
### 13.10.25
Grundgerüst HTML
White Spaces
Heading
Paragraphs
Emphasizing
Emphasizing
### 14.10.25
Listen

51
Erstes Jahr/listen.html Normal file
View File

@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Listen</title>
</head>
<body>
<h1>Listen</h1>
<h2>Ungeordnete Listen (unordered list = ul)</h2>
<h3>Unverschachtelt</h3>
<p>Top Serien</p>
<!-- ul = unordered list, li = list item-->
<ul>
<li>Prison Break</li>
<li>Breaking Bad</li>
<li>Dexter</li>
<li>Stranger Things</li>
<li>Squid Game</li>
</ul>
<h3>Verschachtelt</h3>
<ul>
<li>Punkt 1</li>
<li>Punkt 2
<ul>
<li>Punkt 2.1</li>
<li>Punkt 2.2
<ul>
<li>Punkt 2.2.1</li>
<li>Punkt 2.2.1</li>
</ul>
</li>
</ul>
</li>
<li>Punkt 3</li>
</ul>
<h2>Geordnete Listen (ordered Listen = ol)</h2>
<!-- Verschachtelung vermeiden-->
<p>Top Progrock-Bands</p>
<ol>
<li>Pink Floyd</li>
<li>Emerson Lake Palmer</li>
<li>King Crimson</li>
<li>Queen</li>
<li>Opeth</li>
</ol>
</body>
</html>