wordpress - Transform next posts link in button -


i have link next posts in html theme:

<ul class="navigation">    <li class="previous">      <a href="previous.html" class="page-elements-title">prev</a>    </li>    <li class="next">      <a href="next.html" class="page-elements-title">next</a>    </li> </ul> 

the css transforms link nice button.

now want apply code wordpress theme. tried:

<ul class="navigation">    <li class="previous">      <a href="<?php echo get_next_posts_link(); ?>" class="page-elements-title">prev</a>    </li>    <li class="next">      <a href="<?php echo get_previous_posts_link(); ?>" class="page-elements-title">next</a>    </li> </ul> 

but doesn't work! how can solve this?

previous_post_link , next_post_link deprecated  

so instead of use following

<?php previous_post(); ?>    <?php next_post(); ?> 

refer codex next_and_previous_links