
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
How to create an unordered list with disc bullets in HTML?
An ordered list is numbered and an unordered list is not numbered it can be created with the tag <ul></ul> and define the items of the list using the tag <li></li>. We can create 4 types of unordered list in HTML −
disc − This creates an unordered list marked to a bullet (default).
circle − This creates an unordered list marked to a circle.
square − This creates an unordered list marked to a square.
none − This creates an unordered list without any marker.
Syntax
Following is the syntax to create an unordered list with disc bullets in HTML.
<ul style="list-style-type: disc"> <li>Item in list…</li> <li>Item in list…</li> <li>Item in list…</li> </ul>
Example
Given below is an example to create an unordered list with disc bullets in HTML.
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <ul style="list-style-type: disc"> <li>Abdul</li> <li>Jason</li> <li>Yadav</li> <li>Saiteja</li> <li>Akshaj</li> <li>Tharun</li> </ul> </body> </html>
Following is the output for the above example program.
- Related Articles
- How to create an unordered list with circle bullets in HTML?
- How to create an unordered list with square bullets in HTML?
- How to create an unordered list with image bullets in HTML?
- How to create an unordered list without bullets in HTML?
- How to create an unordered list without bullets using CSS?
- How to create unordered list in HTML
- How to add an unordered list in HTML?
- How to create space between list bullets and text in HTML?
- How to create image bullets in HTML
- How to create an ordered list with list items numbered with numbers in HTML?
- How to create an ordered list with list items numbered with lowercase letters in HTML?
- How to create an ordered list with list items numbered with uppercase letters in HTML?
- How to create an ordered list in HTML?
- How to create an ordered list with list items numbered with uppercase roman numbers in HTML?
- How to create an ordered list with list items numbered with lowercase roman numbers in HTML?

Advertisements