I'm using this for a text link but the font is showing up bold. How can I get the font to be normal, not bold?
a.two:link {
color: #ff0000;
font-family: Arial;
font-size: 22px;
text-decoration: underline;
font-style: italic;
}
a.two:active {
color: #ff0000;
font-family: Arial;
font-size: 22px;
text-decoration: underline;
font-style: italic;
}
a.two:visited {
color: #ff0000;
font-family: Arial;
font-size: 22px;
text-decoration: underline;
font-style: italic;
}
a.two:hover {
color: #ff0000;
font-family: Arial;
font-size: 22px;
text-decoration: underline;
font-style: italic;}
|