Zoznamy

V texte často potrebujeme robiť rôzne rozdelenia, ponúkané možnosti z ktorých si vyberáme. Na to sú vhodné odrážky a číslovanie.

Zoznamy s odrážkami

<ul>    </ul>začiatok a koniec odrážok
<li>text odrážky
<ul type=disk/circle/square>parameter type určuje tvar odrážky

disk - bodka  nastavené implicitne
circle - krúžok
square - štvorček
<H4>Nadpis </H4>
<ul>
<li>text 1
<li>text 2
<li>text 3
<ul>

Nadpis

  • text 1
  • text 2
  • text 3
<H4>Nadpis </H4>
<ul type=circle>
<li>text 1
<li>text 2
<li>text 3
<ul>

Nadpis

  • text 1
  • text 2
  • text 3
<H4>Nadpis </H4>
<ul type=square>
<li>text 1
<li>text 2
<li>text 3
<ul>

Nadpis

  • text 1
  • text 2
  • text 3

 

Zoznamy s číslovaním

<ol>    </ol>začiatok a koniec číslovania
<li>text
<ol type=1/A/a/I/i>parameter type určuje spôsob číslovania

1 - arabské číslice  nastavené implicitne
A - veľká abeceda
a - malá abeceda
I - rímske číslice veľké
i - rímske číslice malé
<H4>Nadpis </H4>
<ol>
<li>text 1
<li>text 2
<li>text 3
</ol>

Nadpis

  1. text 1
  2. text 2
  3. text 3
<H4>Nadpis </H4>
<ol type=A>
<li>text 1
<li>text 2
<li>text 3
</ol>

Nadpis

  1. text 1
  2. text 2
  3. text 3
<H4>Nadpis </H4>
<ol type=a>
<li>text 1
<li>text 2
<li>text 3
</ol>

Nadpis

  1. text 1
  2. text 2
  3. text 3
<H4>Nadpis </H4>
<ol type=I>
<li>text 1
<li>text 2
<li>text 3
</ol>

Nadpis

  1. text 1
  2. text 2
  3. text 3
<H4>Nadpis </H4>
<ol type=i>
<li>text 1
<li>text 2
<li>text 3
</ol>

Nadpis

  1. text 1
  2. text 2
  3. text 3

 

Zoznamy s viacúrovňovým číslovaním

<H4>Nadpis </H4>
<ol >
<li>text 1
<li>text 2
<ul >
<li>text 21
<li>text 22
</ul>
<li>text 3
</ol>

Nadpis

  1. text 1
  2. text 2
    • text 21
    • text 22
  3. text 3

<H4>Nadpis </H4>
<ol >
<li>text 1
<li>text 2
<ol type=a >
<li>text 21
<li>text 22
</ol>
<li>text 3
</ol>

Nadpis

  1. text 1
  2. text 2
    1. text 21
    2. text 22
  3. text 3

© TS