Home Web Design Tutorials Nested HTML Lists | How to Make Nested list in HTML Nested HTML Lists | How to Make Nested list in HTML Admin 17:44 0 comments Share: Facebook Twitter Google+ Pinterest Whatsapp List can be nested (lists inside lists):ExampleInput | Example<ul> <li>Coffee</li> <li>Tea <ul> <li>Black tea</li> <li>Green tea</li> </ul> </li> <li>Milk</li></ul>OutPut | ResultCoffeeTea Black teaGreen teaMilk Note: List items can contain new list, and other HTML elements, like images and links, etc.
No comments