Adv

‘HTML5 list’ címkét tartalmazó cikkek

Hungarian Version!

More of You have indicated, that the lists and the changes of the lists have been out of the articles so far. Now I would like to dissolve this gap. In my opinion there are less changes that happened according to HTML4.
You can make lists (ordered: (<ol> … <li>) or unordered (<ul>…<li>) or mixed lists (ordered and unordered) in a similar manner. So far we had opportunity to create lists in html aswell so let’s see an example for this:

The build-up of an unordered list:

<ul>
<li>Budapest</li>
<li>Pécs</li>
</ul>

The build-up of an ordered list:

<ol>
 <li>Budapest</li>
 <li>Pécs</li>
</ol>

Tovább olvasom »