How to Display the tag content of Custom Post?

in the loop, insert the_tags() function, like this:

            <?php while(have_posts()) : the_post(); ?>
                    <div class="your_content_div">
                       <?php the_content();?>
                    </div>      
                    <div class="tagssss">
                       <?php the_tags();?>
                    </div>                      
            <?php endwhile; ?>