Advanced Custom Fields [closed]

OK, after playing for a while, I solved my issue with the following code:

        <?php $field = get_field('introduction');
    if(!empty ($field)){
        ?>
         <div class="sc-project-type">
            <h4>Introduction:</h4>
            <?php echo ($field); ?>
         </div>
        <?php } ?>