0

How to add unordered lists in HTML.

Which tag is used to add an unordered list to HTML.

25th Feb 2025, 12:07 PM
Inaccurate Decline
Inaccurate Decline - avatar
2 Antworten
+ 5
To add an unordered list in HTML, you use the <ul> tag. Inside the <ul> tag, you place <li> tags for each item in the list. Simple example: <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> This will create a bullet-point list like this: • Item 1 • Item 2 • Item 3 The <ul> stands for "unordered list," and <li> stands for "list item. You can learn more about listing items and other HTML basics in the Intro to HTML lessons. I recommend going through those lessons for a deeper understanding.
25th Feb 2025, 12:44 PM
✧GHOST✧
✧GHOST✧ - avatar
0
use tag <ul>tag and after <li>
26th Feb 2025, 10:29 AM
Divyanshu Raghuvanshi
Divyanshu Raghuvanshi - avatar