Get post by tag

Look at this section: Tag parameters in WP Codex, where is explained search by tags.

Your code like right. Try change numberposts to int:

<?php $args = array(
    'numberposts' => 3,
    'post_status' => 'publish',
    'tag' => 'travel'
);