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

Unordered 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.

<ul style=”list-style-image: url(‘../images/image.jpg’);”> <!– image for unordered list –>
<ul style=”list-style-type: circle;”> <!– makes a circle next to a list item –>
<ul style=”list-style-type: square;”> <!– makes a square next to a list item –>
<ul style=”list-style-type: none;”> <!– makes nothing next to a list item –>

Example:
<ul style=”list-style-type: none;”> <!– makes list items with no characters or overrides stylesheet –>
<li>Item A</li>
<li>Item B</li>
</ul>