how to create a page that only shows blogs from one catagory

You can also make a copy from your page.php and paste the following code:

<?php 
     $args = array( 'post_type' =>   'post',                        
                           'category_name' =>    'clothing',                    
                           'posts_per_page' =>  6, 
                           'paged' =>  $paged   );
            query_posts( $args );
?>

you have to change “clothing” for your category name.

more information here