Jump to content

  • Free consultations and support
  • Live chatClick Here for Live Chat
  • Call ico 1888-906-1888
    Phone support: Open

    Ready for your call :)

    Our business hours:

    Mon — Fri, 2am — 8pm (EST)

    US & EU support teams

    Phone support: Closed

    We are back in: 1h 20m

    Our business hours:

    Mon — Fri, 2am — 8pm (EST)

    US & EU support teams


How to create unordered list in HTML5 ?

create in html5 unordered list

  • Please log in to reply
 

#1 OneDes

OneDes

    Senior Member

  • Designer
  • 282 posts

Posted 26 January 2013 - 05:03 PM

To create unordered lists in HTML5 do the following:

1.In your HTML5 <body> tag, assign the beginning of your list with <ul> which indicates unordered bullet list
2.For each item in the list use the tags <li></li>.


<ul>
<li>Text1</li>
<li>Text2</li>
<li>Text3</li>
</ul>

You can create nests of lists inside each other like this
<ul>
<li>Text
<ul>
<li>subText1</li>
<li>subText2</li>
</ul>
</li>

<li>Text2
<ul>
<li>subText1</li>
<li>subText2</li>
</ul>
</li>
</ul>





Also tagged with one or more of these keywords: create, in html5, unordered list

0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users