|
Developer Geek Resources HTML Code Examples |
Custom Search
|
Just cut-n-paste to reuse. Note that I am using inline css to change the bullet style from the default.
<lh>circle bullet</lh>
<ul style="list-style-type:circle">
<li>red</li>
<li>blue</li>
<li>green</li>
<li>yellow</li>
</ul>
<lh>square bullet</lh>
<ul style="list-style-type:square">
<li>red</li>
<li>blue</li>
<li>green</li>
<li>yellow</li>
</ul>