I'm trying to style text on a page with a linked css sheet ( link rel="stylesheet" type="text/css" href="style.css" ) and the page is not displaying the font as it should be with the css, it's just displaying it normally : (div class=large) Text (div)
this is the css:
body
{
background-color:#d0e4fe;
}
large
{
color: #00FF00;
font-family:arial;
font-size: 4pt;
font-family:"Verdana";
font-size:20px;
}
any ideas?