我遇到字体问题。
我添加了代码以使字体在我的页面中工作,但是当我键入任何关键字时,字体不起作用并显示字符串关键字。
这是css代码:
/* @font-face kit by Fonts2u (http://www.fonts2u.com) */ @font-face {font-family:"GE Dinar One Medium";src:url("GE_Dinar_One_Medium.eot?") format("eot"),url("GE_Dinar_One_Medium.woff") format("woff"),url("GE_Dinar_One_Medium.ttf") format("truetype"),url("GE_Dinar_One_Medium.svg#GEDinarOne-Medium") format("svg");font-weight:normal;font-style:normal;}
p{font-family:"GE Dinar One Medium";}
这是html:
<p>ahmed mohamed احمد محمد
<br />
انا من مدينة المنصورة مصر
</p>
这只是一个测试,但字体不起作用,我确定它的字体网址是正确的。所有字体类型都在同一个文件夹中
有什么问题?
答案 0 :(得分:0)
您可能需要添加字体系列的来源。
看这篇文章 How to add some non-standard font to a website?
<style type="text/css">
@font-face {
font-family: "My Custom Font";
src: url(http://www.example.org/mycustomfont.ttf) format("truetype");
}
p.customfont {
font-family: "My Custom Font", Verdana, Tahoma;
}
</style>
<p class="customfont">Hello world!</p>