Site Cloner PHP Script
Bargain Hunter PHP Script
Job Hunter PHP Script
Site Login and Access Control PHP Script

Ordered lists can be styled in the tag or in a stylesheet. Each method has pros and cons. The code below shows examples for creating styling to <li></li> tags.

<ol style=”list-style-type: upper-roman;”> <!– makes list items with upper roman characters –>
<ol style=”list-style-type: lower-alpha;”> <!– makes list items with lower alpha characters –>
<ol style=”list-style-type: none;”> <!– makes list items with no characters –>
<ol style=”list-style-image: url(‘../images/image.jpg’);”>

Example:
<ol style=”list-style-type: lower-alpha;”> <!– makes list items with lower alpha characters –>
<li>Item A</li>
<li>Item B</li>
</ol>