<?php
$tags = get_the_tags();
if ($tags) {
foreach($tags as $tag) {
echo $tag->name . ' ';
}
}
?>