HTML LISTS
HTML provides three main types of lists: 1. Unordered List ( <ul> ) Used when the order of items does not matter. Items are displayed with bullet points. <ul> <li> Apple </li> <li> Banana </li> <li> Orange </li> </ul> Output: Apple Banana Orange 2. Ordered List ( <ol> ) Used when the order of items is important. Items are displayed with numbers by default. <ol> <li> Wake up </li> <li> Brush teeth </li> <li> Eat breakfast </li> </ol> Output: Wake up Brush teeth Eat breakfast You can change the numbering style: <ol type = "A" > <li> HTML </li> <li> CSS </li> <li> JavaScript </li> </ol> type values: 1 → 1, 2, 3 (default) A → A, B, C a → a, b, c I → I, II, III i → i, ii, iii 3. Description List ( <dl> ) Used for terms and their descriptions. <dl> ...