Just put the shortcode in a post, publish it.
Remember the “id” of the post(in the address bar) after you publish.
Then use the following code instead of do_shortcode.
<?php echo ‘<div>’ ?>
<?php query_posts(‘p=85’); if(have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endif; ?>
<?php echo ‘</div>’ ?>
Replace 85 with your post “id”
<!– ALL DONE –>