How to display a term of taxonomy

I found the solution thanks to answer this question:
Specify number of posts in my ‘tax_query’

I wanted to show the posts for ‘futbol’ within the ‘tipo_deporte’ taxonomy:

        <?php
    $args = array(
        'posts_per_page' => 2,
        'tax_query' => array(
            array(
                'taxonomy' => 'tipo_deporte',
                'field' => 'slug',
                'terms' => array('futbol'),
                     )
            )
        );
    $query = new WP_Query( $args );

   if ( $query->have_posts() ) {
        while( $query->have_posts() ) {
            $query->the_post();

     //The Post

        }
    }
    ?>