$tags = wp_get_post_tags($post->ID);
$html = \'<div class="post_tags">\';
foreach ( $tags as $tag ) {
$tag_link = get_tag_link( $tag->term_id );
$html .= "<a href=\'{$tag_link}\' title=\'{$tag->name} Tag\' class=\'{$tag->slug}\'>";
$html .= "{$tag->name}</a> "; //this will get the taxmont term.
}
$html .= \'</div>\';
echo $html;
This will Help You