| 
<?php
 /*
 * Creates and display a html list.
 * Background color: orange
 * Font: sans-serif Type: disc Font-Color: black
 * You can create html lists through a database too.
 */
 
 $links = array("cv.php"=>"Curriculum Vitae","info.php"=>"Information","courses.php"=>"Courses");
 $html_list = new HTML_List($links,'sans-serif','black','orange','disc');
 $html_list->Display();
 
 ?>
 |