Lists in HTML Title: Understand the Lists elements: objective: By the end of this lecture you will : Understands different types of HTML lists. Be able to create ordered and unordered Lists. Learn how to create nested lists. Apply list styling and attributes. Types of lists: HTML offers three types of lists Ordered Lists(OL): These are numbered and letters list is used to ordered items: Unordered Lists(UL): These are bulleted list used to order the items : Definition Lists(DL): These lists are used to define the terms and descriptions: How to create these lists: Order lists(OL): <ol> <li> Orange </li> <li> Apple </li> <li> Banana </li> </ol> The ` <ol> ` tag is used to create ordered lists: The ` <li> ` tag is used to create a lists elements. Unordered Lists(UL): <ul...
"Welcome to code with Nomi's blog – Dive into HTML, CSS, JS, Bootstrap, PHP, and DBMS for coding mastery!"