<html>
<head>
<title>Hier kommt der Titel der Seite hin</title>
</head>
<body>
Hier steht der Text der Webseite
</body>
</html>
Ungeordnete Liste <ul> <li>Punkt 1</li> <li>Punkt 2</li> </ul> |
|
Verschachtelte Liste <ul> <li>Punkt 1</li> <li>Punkt 2</li> <ul> <li>Punkt 2.1</li> <li>Punkt 2.2</li> </ul> </ul> |
|
Listenformatierung <ul> <li type="circle">circle</li> <li type="disc">disc</li> <li type="square">square</li> </ul> |
|
Nummerierte Listen <ol> <li>Aachen</li> <li>Bonn</li> </ol> <ol type=“A“>…</ol> <ol type=“a“>…</ol> <ol type=“I“>…</ol> <ol type=“i“>…</ol> <ol start=”n”>...</ol> |
|
Es können so viele Leerzeichen eingefügt werden, wie man will!</pre>
<hr /> |