Posts

Showing posts with the label html ordered list

How to create Nested lists in HTML

Image
How to create Nested lists in HTML This Blog You Will Learn  ஃ What is a Nested List in HTML ஃ HTML <ul> tag ஃ  Type  of Bullets ஃ Syntax of HTML <ul> tag ஃ Explain Program ஃ Output

How to Create Ordered Lists in HTML for Free (With Examples)

Image
HOW TO create ordered lists in html  HTML Ordered List order list schemes different from number lists for your item. If you are require to put your item in  numbered of list then an HTML ordered list will be used. This list is create by using <ol> tag and ends with </ol> tag. The numbering start at  one and  incremented by  the one for each successive ordered list element tagged with <li> tag  and ends with </li> Following are the possible options <ol type="1"> - Default-Case Numbers.  <ol type="I"> - Upper-Case Roman Numbers. <ol type="i"> - Lower Case Numbers. <ol type ="a"> - Lower case Letters. <ok type= "A"> - Lower Case Letters. HTML Ordered List Program  <!DOCTYPE html> <HTML> <body> <h1> Ordered List</h1> <ol type="1" start="1"> <li>Water</li> <li>Food</li> <li>Water</li> </ol> ...