J
JCO
Given the below portion of my .css file, how do I dictate the font to be
Arial (or Times...) and the weight to be bold or strong. Sometimes bold
works, sometimes 'strong' works. I never know.
I'm only talking about the normal text (not the hyperlinks).
The text that is already set to be white (#ffffff).
Thanks
body {
background: #0055DD;
color: #ffffff;
}
a {
text-decoration: none;
}
a:link {
background-color: transparent;
color: #fad734;
text-decoration: underline;
font-weight: bold;
}
......
Arial (or Times...) and the weight to be bold or strong. Sometimes bold
works, sometimes 'strong' works. I never know.
I'm only talking about the normal text (not the hyperlinks).
The text that is already set to be white (#ffffff).
Thanks
body {
background: #0055DD;
color: #ffffff;
}
a {
text-decoration: none;
}
a:link {
background-color: transparent;
color: #fad734;
text-decoration: underline;
font-weight: bold;
}
......