小编典典

如何向网站添加一些非标准字体?

all

有没有办法在不使用图像、Flash或其他图形的情况下在网站上添加一些自定义字体?

例如,我在一个婚礼网站上工作,我为这个主题找到了很多不错的字体。但我找不到在服务器上添加该字体的正确方法。以及如何将带有 CSS 的字体包含到 HTML
中?这可以在没有图形的情况下完成吗?


阅读 117

收藏
2022-03-08

共1个答案

小编典典

这可以通过 CSS 完成:

<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>

如果您使用 TrueType-Fonts (TTF)、Web Open Font Format (WOFF) 或 Embedded Opentype
(EOT),则所有常规浏览器都支持它。

2022-03-08