Learn Simpli

Free Online Tutorial For Programmers, Contains a Solution For Question in Programming. Quizzes and Practice / Company / Test interview Questions.

HTML LISTS
HTML complete tutorial for beginners

HTML LISTS

Unordered HTML list: starts with <ul> tag and each item in the list start with <li> tag and, items are marked with bullets (small black dots) Example: <ul> <li>Morning</li> <li>Noon</li> <li>Evening</li> </ul> you can select list style Disc: <ul style="list-style-type:disc;"> <li>Morning</li> <li>Noon</li> <li>Evening</li> </ul> Circle: <ul style="list-style-type:circle;"> <li>Morning</li> <li>Noon</li> <li>Evening</li>…