hi all
I tried to apply this code to set special font for web page
//////////////////////////
////
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>my page</title>
<style type="text/css">
@font-face {
font-family: "almwaheb";
src: url("almwaheb.ttf");
}
body {
font-family: "almwaheb", Tahoma;
}
</style>
</head>
<body>
<p>'D3D'E 9DJCE</p>
</body>
</html>
//////////////////////////
////
it applied successful on Firefox , but no changes on Internet Explorer
they said to me that I want a .PFR font to applied on IE .
where can I find .pfr fonts ? or how can I set special font of my page and can be applied on Firefox and IE and other browsers ?
thanks