
|
|
You may have used Bullets and Numbering many times in your word document, and have seen it on many websites. Mostly people use only default bullets and numbering. Here are some of the samples for Unordered List (<ul>) and Ordered List (<ol>). All you have to do is to change the type attribute’s value for the list.
Samples for <ul> tag
Circular Bullet |
Disc Bullet |
Square Bullet |
- Sample 1
- Sample 2
- Sample 3
|
- Sample 1
- Sample 2
- Sample 3
|
- Sample 1
- Sample 2
- Sample 3
|
<ul type="circle"> |
<ul type="disc"> |
<ul type="square"> |
Samples for <ol> tag
Alphabetical |
Numbered |
Roman |
- Sample 1
- Sample 2
- Sample 3
|
- Sample 1
- Sample 2
- Sample 3
|
- Sample 1
- Sample 2
- Sample 3
|
<ul type="a">
OR
<ul type="A"> |
<ul type="1"> |
<ul type="i">
OR
<ul type="I"> |
|
|
|
|