I had used a code for web-font, from a tutorial.Not sure what the src:local(), means.Is it necessary to include local()?or is it just fine to use font-family:... and src:url()?
@font-face
{
font-family:"F25";
src:url("f25_executive-webfont.eot");
src:local("F25"),
url("f25_executive-webfont.ttf")format("truetype");
}
#quote
{
font-family:"F25",Georgia;
text-align:center;
}
many thanks in advance.