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

Two methods to create colored text styling with lists that are links.

METHOD A:
This method creates a class for links with a class name list.
<style>
a.list {
color:blue;}</style>

Styling text color in a list using css class.
<ol><li>
<a class=”list” href=”page.html>Link Text</a></li></ol>

METHOD B:
Styling override or styling a list element.
The specific anchor is styled where it is.
<ol><li><a style=”color:blue;” href=”page.html>Link Text</a></li></ol>