Edit in JSFiddle

<?php $my_query = new WP_Query('page_id=87');
  while ($my_query->have_posts()) : $my_query->the_post();
  $do_not_duplicate = $post->ID;
?>
  <h1><?php the_title();?></h1>
  <a href="<?php the_permalink();?>" title="<?php the_title();?>">Saiba Mais</a> 
<?php endwhile; wp_reset_query();?>