如何在我的 CSS 中使用阿拉伯字体?

发布于 2024-12-19 09:49:11 字数 480 浏览 2 评论 0原文

我刚刚发现没有阿拉伯字体生成器,因为连接字母的问题......这是否意味着我唯一的选择就是从 fonts.com 获取它?有谁知道我可以在哪里获得优质的阿拉伯字体用于我的网站?

#ArbText01 {
    position:absolute;
    top:130px;
    right:10px;
    font-family:adobe arabic;
    font-size:30px;
    color:#fb5e08;
    padding-top:0px;
    padding-bottom:0px;
    direction:rtl;
}

<div id='ArbText01'>ةالفصح
        </div>

http://arabic001.com/home.html

I just found out that there is no generator for Arabic fonts, because of the issue of connecting the letters... Does that mean that the only choice I have is to get it from fonts.com? Does anyone know of a place were I can get good quality arabic fonts to use for my website?

#ArbText01 {
    position:absolute;
    top:130px;
    right:10px;
    font-family:adobe arabic;
    font-size:30px;
    color:#fb5e08;
    padding-top:0px;
    padding-bottom:0px;
    direction:rtl;
}

<div id='ArbText01'>ةالفصح
        </div>

http://arabic001.com/home.html

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

划一舟意中人 2024-12-26 09:49:11

这是在 css 中获取字体的一种简单方法:

@import url(http://fonts.googleapis.com/earlyaccess/droidarabickufi.css);

.droid-arabic-kufi {
  font-family: 'Droid Arabic Kufi', serif;
}

查看 http://fonts.googleapis.com

Here ist one simple way to get fonts in css:

@import url(http://fonts.googleapis.com/earlyaccess/droidarabickufi.css);

.droid-arabic-kufi {
  font-family: 'Droid Arabic Kufi', serif;
}

Look at http://fonts.googleapis.com

热血少△年 2024-12-26 09:49:11

阿拉伯字体是什么意思?我们每天使用的大多数“普通”字体在 CSS 中都可以正常工作。但请确保在需要时设置 RTL 属性。毕竟,您不希望阿拉伯人从左到右阅读,是吗? :-)

(与英文网站结合起来看起来很有趣,但这正是阿拉伯语和其他 RTL 语言所需要的)

What do you mean with Arabic fonts? Most "normal" fonts we use every day will work just fine in CSS. Do make sure to set the RTL properties though, where needed. After all, you don't want Arabic people to read left-to-right, do you? :-)

<html dir="rtl"> (combined with an English website it looks funny, but it's what you need for Arabic and other RTL languages)

国产ˉ祖宗 2024-12-26 09:49:11

您应该提供这样的字体:

@font-face {
    font-family: 'mywebfont';
    src: url('adobe_regular.eot');
    src: url('adobe_regular.eot?#iefix') format('embedded-opentype'),
         url('adobe_regular.woff') format('woff'),
         url('adobe_regular.ttf') format('truetype'),
         url('adobe_regular.svg#adobe_regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

现在您应该使用 'mywebfont' 作为字体系列。

you should provide a font-face like this:

@font-face {
    font-family: 'mywebfont';
    src: url('adobe_regular.eot');
    src: url('adobe_regular.eot?#iefix') format('embedded-opentype'),
         url('adobe_regular.woff') format('woff'),
         url('adobe_regular.ttf') format('truetype'),
         url('adobe_regular.svg#adobe_regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

and now you should use 'mywebfont' as font family.

捶死心动 2024-12-26 09:49:11

您总可以从某个地方找到免费字体。我确信快速的谷歌搜索会产生很好的结果。如果您谈论让它们工作,您需要研究 UTF-8 编码,以便所有字符都能正确显示。

You could always find a free font from somewhere. I'm sure a quick google search would yield excellent results. If your talking about getting them to work, you'll need to look into UTF-8 encoding so that all the characters display correctly.

趴在窗边数星星i 2024-12-26 09:49:11

我将展示如何轻松地将“droidarabickufi”字体集成到您的CSS文件中,以及如何轻松地将其应用到整个文档(而不是将其应用到单个类)。

首先,在 CSS 文档顶部添加此行...

@import url(http://fonts.googleapis.com/earlyaccess/droidarabickufi.css);

然后将规则应用于“HTML”标记(将其应用于整个文档)。

html{font-family: 'Droid Arabic Kufi', serif;font-size:100%;}

< strong>注意:您必须检查另一个类是否使用自定义字体系列,例如“Tahoma”或“Sans”或“Arial”或其他字体。

I will show how easy to integrate the "droidarabickufi" font onto your CSS file and how easy to apply it to your entire document (instead of applying it to individual classes).

First, Add this line at the top of your CSS document...

@import url(http://fonts.googleapis.com/earlyaccess/droidarabickufi.css);

Then apply the rule to the "HTML" tag (to apply it for the entire doc).

html{font-family: 'Droid Arabic Kufi', serif;font-size:100%;}

Note: you have to check if another class uses custom font family like "Tahoma" or "Sans" or "Arial" or others.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文