Forum Moderators: open
echo '<span class="special-text">'.$output.'</span>';
And define your CSS like:
.special-text {
font-size: larger;
} However, if you want to keep this as purely HTML then you could always try the <big> tag...?
echo "<big>$output</big>";
Although <big> is not deprecated, it doesn't separate your style and content that an applied class and CSS solution does.