Page 1 of 1

font - a quick question

Posted: Sun Apr 28, 2002 6:00 am
by abionifade
How can i modify my code to make the font 'verdana' and the size (font size 1)

Any quick method? rather than me learning about stylesheets.

Cheers :)

Code: Select all

echo "<div align="center">
";
      echo "You wil be taken back to your personal homepage.<br/>
";
      echo "Alternatively, you can click <a href="./home.php">here</a> if you can't wait.
";
      echo "</div>
";

Posted: Sun Apr 28, 2002 8:16 am
by epsilon
I just use a <font> tag with echo
echo ("<font color=red>sometext</font>");

Posted: Sun Apr 28, 2002 10:36 am
by abionifade
great help.

it worked very well

Thank you! :D

Posted: Sun Apr 28, 2002 11:14 am
by epsilon
No problem 8)