css_practice2.css
283 Bytes
/*ex02.css*/
a:link, a:visited
{
font-family: Arial, Helvetica, sans-serif;
text-decoration: none;
color: white;
padding: 10px;
background-color: gray;
}
a:hover
{
color: yellow;
background-color: black;
}
a.direction:link, a.direction:visited
{
color: yellow;
}