how do i make the “contact us” on a page created not to display

Set the title as ‘Contact’. Then use the following code:

add_filter('the_title','remove_title');

function remove_title($title) {
    if( !is_page('Contact') ) {
        return $title;
    }
}

Put this code in your functions.php file.