Wrap it in a span element and either add a class attribute and reference it in a stylesheet or add a style attribute and list them there.
Class method
This is the preferred method as it easily lets you separate your presentation (CSS) and data layer (HTML) of your view.
CSS
.something {
color: red;
font-family: Georgia, "Times New Roman", serif;
}
The color property can take the color value as...
- a name (in the example above,
red).
- a hexadecimal number prefixed with a
# (e.g. #ff0000) in the format of #rrggbb. If the pairs are identical, e.g. #ff00cc you can use shorthand notation #f0c.
- a rgb(a) value, such as
rgb(255,0,30) with an optional alpha value, e.g. rgb(0,0,255,0.8). The upper bound is an one byte unsigned int, or 255. The values can also be percentages.
Further Reading.
The font-family property can take a comma delimited list of font names, where if the font on the left is not present, it looks to the right for a fallback, and so forth. If there is a space in the font name, use quotes to reduce ambiguity in the font title. It is also considered good practice to include serif or sans-serif at the end, in case the user has a very small subset of fonts and you want to ensure serifs or not.
Further Reading.
HTML
<span class="something">{$notes}</span>
style attribute
This method is not recommended, but possible. It tightly couples your presentation and data layer (by binding them together).
It also means you can not use any of the advantages of an external CSS file (fine grained cache control, selectors etc).
HTML
<span style="color: red; font-family: Georgia, 'Times New Roman', serif;">{$notes}</span>
You will notice I used single quotes (') there to not clash with the double quote (") delimiters of the HTML attribute.
In addition...
You really want to learn from day 1 the best way to output HTML, and the best way is not to intersperse functions such as mysql_fetch_array(). Mixing PHP with HTML is not recommended, because it again mixes your layers (business rules and presentation layer).
What would happen if your boss said OK, now we want that as JSON and XML. Are you going to copy and paste your MySQL specific code 3 times?
The best best here is to build your array first, and from the variable names, we may want to call it $links.
$links = array();
while ($row = mysql_fetch_array($result)) {
$links[] = array(
'link' => $row['link'],
'notes' => $row['notes']
);
}
(note that if $row only had the keys link and notes, you could append the $row variable itself directly to $links).
Note that extract() is rarely a good idea. It can easily clobber existing variables, especially in the context of HTML and PHP functions mixed together. If you must use it, use extract($array, EXTR_SKIP) so you don't clobber existing variables, which would be a debugging nightmare.
When you interpolate variables in double quote delimited strings, you only need the braces ({}) when there is ambiguity in the variable, such as $a['b'], $a->b, etc.
In the example above, you would determine the view context (HTML in this example) and then pass $links to it, which you could then generate the HTML in a clean manner...
<ul>
<?php foreach($links as $link): ?>
<li><a href="<?php echo $link['link']; ?>"><?php echo $link['link']; ?></a> - <?php echo $link['notes']; ?></li>
<?php endforeach; ?>
</ul>
I have removed the invalid HTML nesting and deprecated element (center). If you want to center it, give it a fixed width and margin: 0 auto.
Also, target="_blank" has been deprecated in XHTML Strict, but not HTML5. If using a doctype where it is deprecated, consider using a JavaScript workaround. Change the click handler to have window.open(this.href, '_blank') and cancel the default behaviour.
Also, if link and notes are from user input, make sure link conforms to the syntax of an encoded URL. If notes is from user input, you may need to htmlspecialchars() it first to ensure no HTML is echo'd as is.
I have also used PHP's alternate control structure syntax, because it is popular in views and does read better, i.e. no which } does that close? confusion.
One further thing you may want to do is display a friendly message if the array is empty.
<?php if(empty($links)): ?>
<p>No links yet, check back soon.</p>
<?php else: ?>
<ul>
<?php foreach($links as $link): ?>
<li><a href="<?php echo $link['link']; ?>"><?php echo $link['link']; ?></a> - <?php echo $link['notes']; ?></li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
Use the comments if seeking any further clarification, and good luck :)