Given the below portion of my .css file, how do I dictate the font to be
Aril and the weight to be bold or strong. 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;
}
......
Aril and the weight to be bold or strong. 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;
}
......
Comment