How to show months in wordpress archive page?

Try to use this,

<?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12 ) ); ?>

Refer to the codex for further customisation,