Hi Friend
->First register your menu in theme function.php
register_nav_menus( array(
'header_menu' => __( 'Header Navigation', 'theme' ),
'footer_menu' => __( 'Footer Navigation', 'theme' ),
) );
-> And put this code where you want to show your menu in header html..
<div class="main_menu">
<?php wp_nav_menu( array( 'theme_location' => 'header_menu' ) ); ?>
</div>
-> and create your menu in dashboard using menu option
Ex : go admin panel & navigate Appearance->Menu-> see right side..
->create new menu and add your pages into your menu…& save it
See This links
register Menu