Source code:
<?php
include ('include_pet_fns.php');
session_start();
do_html_header("Curriculum Vitae");
echo '<table border="0" cellspacing="0" cellpadding="0" width="750">';
echo '<tr>';
echo '<td style="padding-left:5px;padding-right:5px">';
display_cv();
echo '</td>';
echo '</tr>';
echo '<tr>';
echo '<td>';
echo '<div align="center">';
//display_button('index.php', 'home', 'Home');
echo '</div>';
echo '</td>';
echo '</tr>';
echo '<tr>';
echo '<td> </td>';
echo '</tr>';
echo '</table>';
do_html_footer();
?>