How can I to create a custom page in Wordpress 3.0. Give me any link of tutorial.
WordPress provides a clever way to do this called Custom Page Templates. To create a WordPress Page Template, you’ll need to use your text editor. Go to the directory on your server where you installed WordPress, and then navigate to the directory of your theme. Usually that looks something like this: “/wp-content/themes/default” where “default” is your theme name.
That’s where you will create your custom page template file. Create a file called “cover_page.php” and add the following code to it:
<?php
/*
Template Name: Cover Page
*/
?>
<?php get_header(); ?>
Here's my cover page!
<?php get_footer(); ?>
more details read this
http://www.expand2web.com/blog/custom-page-template-wordpress/