If you want the styling inline with the href tag then you will have to use something like:
Code:
<a style="color:#FFFFFF;" href="my-page.php">Link text</a>
The code others have posted should either be in a separate stylesheet included on the page in the <head> section, like:
Code:
<head>
<link rel="stylesheet" type="text/css" href="mystylesheet.css" />
</head>
<body>
.....
or in <style type="text/css"></style> tags in the <head> section.