-
Bullets and Lists
For this html tip, look at this bullet:
This is next to a bullet
It was made with this simple HTML code:
<li>This is next to a bullet</li>
Insert the above code to your web page,
and then change the message to suit you needs.
...And now let's end with more advanced tips, concerning lists.
To make numbered bullets,
- Like these
- ones
use this HTML code instead:
<ol><li>Like these</li>
<li>ones</li></ol>
Note that the <ol> is only put at the extremes of the list.
There are also some tips and tricks that will allow different types of bullets:
- Lower Case Roman Numerals
HTML Code:
<ol type="i"><li>Lower Case Roman Numerals</li></ol>
- Upper Case Roman Numerals
HTML Code:
<ol type="I"><li>Upper Case Roman Numerals</li></ol>
- Lower Case Alphabet
HTML Code:
<ol type="a"><li>Lower Case Alphabet</li></ol>
- Upper Case Alphabet
HTML Code:
<ol type="A"><li>Upper Case Alphabet</li></ol>
Finally, text inside these bullets...
Keywords: Bullets and Lists ,HTML Code,Lower Case Alphabet,Upper Case Alphabet,bullets
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks