font - a quick question

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
abionifade
Forum Commoner
Posts: 34
Joined: Thu Apr 18, 2002 5:32 pm

font - a quick question

Post 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>
";
epsilon
Forum Newbie
Posts: 11
Joined: Fri Apr 19, 2002 10:20 am
Location: Belgium
Contact:

Post by epsilon »

I just use a <font> tag with echo
echo ("<font color=red>sometext</font>");
User avatar
abionifade
Forum Commoner
Posts: 34
Joined: Thu Apr 18, 2002 5:32 pm

Post by abionifade »

great help.

it worked very well

Thank you! :D
epsilon
Forum Newbie
Posts: 11
Joined: Fri Apr 19, 2002 10:20 am
Location: Belgium
Contact:

Post by epsilon »

No problem 8)
Post Reply