1. make sure your page is saved as a .php file rather than .htm or .html.
2. add the call to wp-blog-header.php at the top
3. at the start of where you want your entries to go, insert this code:<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
4. at the end of where you want your entries to go, insert this code:
<?php endforeach; else: ?>
<?php _e('Sorry, no posts matched your criteria.'); ?>
<?php endif; ?>
5. the actual format of your entries is dictated by the template tags. search for ‘template tags’ on the codex or wiki. you do not have to use the exact same code quoted by macmanx, but it is a good starting point.
6. archives, calendars, etc are inserted by putting the relevant template tag where you want them to appear.
if this isn’t enough perhaps you should email the wordpress-pro mailing list and request that a professional convert the template for you.