Leo: textbasierte Navigationsleiste

Beitrag lesen

Hallo Danny!
An deiner stelle würd ichs so machen:

<html>
<head>
  <title>Text des Titels</title>
</head>
<body>
  <dl>
     <dt>1</dt>
     <dd>Punkt 1</dd>
       <dl>
          <dt>1.2</dt>
          <dd>Unterpunkt 1</dd>
          </dl>
          <dt>2</dt>
     <dd>Punkt 2</dd>
        <dl>
           <dt>2.1</dt>
           <dd>Unterpunkt 1</dd>
           <dt>2.2</dt>
           <dd>Unterpunkt 2</dd>
        </dl>
  </dl>
</body>
</html>

Gruß,
Leo