Things You'll Need:
- Basic understanding of HTML
- Computer
- Web page
-
Step 1
Decide where the list is going to go, then gather all the list items.
-
Step 2
Write the code <ul> to signify the beginning of the unordered list (an unordered list will be automatically bulleted in your browser).
-
Step 3
Write the code <li> to signify the first item in the bulleted list.
-
Step 4
Enter the information for the first bullet after the first <li> tag. Your first bullet will look like this: <li>Text for first bullet.
-
Step 5
Add the </li> tag at the end of the first item, so your code is <li>Text for first bullet</li>
-
Step 6
Repeat this process for each bulleted item. At the end of the list, place the </ul> tag to signify the end of the bulleted list.







