0
How to add unordered lists in HTML.
Which tag is used to add an unordered list to HTML.
2 Respuestas
+ 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.
0
use tag <ul>tag and after <li>