
- 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 circle bullets in HTML?
An unordered list is unordered list of items marked with bullets, circle, disc and square. It gives you the ability to control the list in the context. Allow us to group a set of related items in lists.
HTML support ordered list, unordered list and we have to use the <ul> tag, to create unordered list in HTML. The <ul> tag defines the unordered list. We use <li> tag to start list of items. The list of items can be marked as bullets, square, disc and circle.
By default, the list items in the context marked with the bullets.
The <li> tag should be placed inside the <ul> tag to create the list of items.
We use type attribute of the <ul> tag, for creating an unordered list with numbers.
We use CSS list-style-type property to define the style of the unordered list items.
Syntax
Following is the syntax to create an unordered list with circle bullets in HTML.
<ul style="list-style-type: circle"> <li>Item in list…</li> <li>Item in list…</li> <li>Item in list…</li> </ul>
Example 1
Given below is an example to create an unordered list with circle 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: circle"> <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.
Example 2
An example to create an unordered list with circle bullets in HTML is implemented below.
<!DOCTYPE html> <html> <head> <title>HTML Unordered List</title> </head> <body> <h1>Developed Countries</h1> <p>The list of developed countries:</p> <ul style="list-style-type:disc"> <li>US</li> <li>Australia</li> <li>New Zealand</li> </ul> </body> </html>
After executing the above HTML script, the output is obtained as −
- Related Articles
- How to create an unordered list with disc 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 add an unordered list in HTML?
- How to create space between list bullets and text 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?
- How to create a list of an unordered combination of elements in a string vector in R?
- Make Unordered list with Bootstrap
