Metabox – Displaying the Value of a Metabox

After reviewing your code there are a couple of things you need to change depending on where the meta content is being held.

Try this to get the value

$desc = get_post_meta( get_the_ID(), 'meta_desc', TRUE );
echo  $desc;

That Will be give you the appropriate meta.