When I called the_taxonomies() function it shows me both tags and categories. I need tags to show from the_tags() function. At the moment I haven't included the_tags() but shows me the tags through the_taxonomies().
Because of this I'm unable to style them separately.

<?php query_posts( 'post_type=blog'); ?>
<?php while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content("<span class=more-linkbl>Read more</span>"); ?>
<div class="blog-misc">Date: <?php the_date();?> <?php the_taxonomies(); ?></div>
...
<?php endwhile; ?>
