You could simply create a default.css file like below and save it to your web space root directory or where your index html file lives. Just add a line to your web doc like so:
Right before the /head
<LINK href="Default.css" rel=stylesheet type="text/css">
</head>
default.css
PHP Code:
BODY {
FONT-SIZE: 10pt; FONT-FAMILY: Verdana
}
A:hover {
COLOR: red; FONT-FAMILY: Verdana; TEXT-DECORATION: underline
}
H3 {
FONT-WEIGHT: bold; FONT-SIZE: 12pt; FONT-FAMILY: Verdana
}
TABLE {
FONT-SIZE: 10pt; FONT-FAMILY: Verdana
}
P {
FONT-SIZE: 9pt; FONT-FAMILY: Verdana
}
TD {
FONT-SIZE: 10pt; FONT-FAMILY: Verdana
}
.topLinks {
FONT-SIZE: 8pt; COLOR: darkblue; FONT-FAMILY: Verdana; TEXT-DECORATION: none
}
So code your links like this:
<a class=topLinks href="somefile.zip"><b>some_text</b></a>
Hope this helps
