Skip to main content

Posts

Showing posts with the label HTML Unordered List

HTML Tutorial 7: Creating HTML List

Hello Guys! This is my tutorial number 7 on HTML. If you would like to read the previous 6 tutorials then please use the search box above, type HTML and get the HTML tutorials list.  Today I will discuss about a simple topic of HTML. Really this is as simple as I say! :) Okay let's start. Practice Rules Practice rules are as usual. Use notepad and a web browser. Save the file with .htm or .html extension.  HTML List: Ordered and Unordered There are mainly two types of lists can be created by HTML code. The first one is ordered list and the other is unordered list.  Ordered List: In an ordered list, the list items are marked by numbers. This exactly looks like a numbered list created by Microsoft Word or other text editing programs.  An ordered list starts with <ol> tag and ends with </ol> tag. Each item of the list starts with <li> tag and ends with </li> tag. Look at the code bel...