Zum Inhalt springen

Lists

li

Selbst-schliessend: Nein li Definiert ein Listenelement innerhalb einer geordneten Liste <ol> oder ungeordneten Liste <ul>. Beispiel: Step one Step two ???? PROFIT!!! <ol> <li>Step one</li> <li>Step two</li> <li>????</li> <li>PROFIT!!!</li> </ol> Beispiel: My shopping list: Milk Bread Chocolate More chocolate… 

ul

Typ: block Selbst-schliessend: Nein ul Definiert eine ungeordnete Liste. Beispiel: My shopping list: Milk Bread Chocolate More chocolate <p>My shopping list:</p> <ul> <li>Milk</li> <li>Bread</li> <li>Chocolate</li> <li>More chocolate</li> </ul>

dl

Typ: block Selbst-schliessend: Nein dl Definiert eine Definitionsliste. Beispiel: Web The part of the Internet that contains websites and web pages HTML A markup language for creating web pages CSS A technology to make HTML look better <dl> <dt>Web</dt>… 

dt

Selbst-schliessend: Nein dt Definiert einen Definitionsbegriff. Beispiel: Web The part of the Internet that contains websites and web pages HTML A markup language for creating web pages CSS A technology to make HTML look better <dl> <dt>Web</dt> <dd>The part… 

dd

Typ: inline Selbst-schliessend: Nein dd Definiert ein Element in einer Definitionsliste. Beispiel: Web The part of the Internet that contains websites and web pages HTML A markup language for creating web pages CSS A technology to make HTML look… 

ol

Typ: block Selbst-schliessend: Nein ol Definiert eine geordnete Liste. Beispiel: Step one Step two ???? PROFIT!!! <ol> <li>Step one</li> <li>Step two</li> <li>????</li> <li>PROFIT!!!</li> </ol> type Legt fest, wie die Liste nummeriert wird. „1“ Default. Verwendet Zahlen. One Two Three…