add Listen
This commit is contained in:
@@ -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
51
Erstes Jahr/listen.html
Normal 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>
|
||||
Reference in New Issue
Block a user