It’s easy. Use get_post_meta() function.
For example. How to make custom <title> tag:
1) Add custom field ‘title’ for every page
2) Edit your header template. Use something like that:
<title><?php echo get_post_meta($wp_query->post->ID, ‘title’, true); ?></title>
PS: Sorry for my english