Guide HTML5: How do add List HTML5



There are 2 different techniques for adding HTML5 lists. You can add 2 different lists with these techniques.

First techniques to add HTML5 List;


 <ul> = Unordered or Bullet List

<ul>
  <li>One item</li>
  <li>Two item</li>
  <li>Three item </li>
</ul>

<li>One item</li> is  <li> </li> meaning tags = Definition Tag



Or Second techniques

<ol> Tag is meaning = Ordered/Numbered List for example;

<ol>
  <li>Pencil</li>
  <li>Paper</li>
  <li>Desk</li>
</ol>



Congratulations, successfully.





Comments