gpt4 book ai didi

html - 如何在html css的网站中安装字体?

转载 作者:太空宇宙 更新时间:2023-11-03 21:37:27 27 4
gpt4 key购买 nike

我想制作一个名为SutonnyMJ.TTF(孟加拉语)字体的网站。我尝试了很多资源,但未能做到这一点。

我使用 @font-face { font-family: SutonnyMJ; src: url('../fonts/SutonnyMJ.TTF'); }

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

但它们并不像我想要的那样工作。

有没有人可以帮助我,我该如何解决这个问题?

最佳答案

你可能可以从那里删除一个 couplke 行并删除遗留支持你的网站可能只用这个就可以正常工作

@font-face {
font-family: 'SutonnyMJ';
src: url('../fonts/SutonnyMJ-webfont.woff') format('woff'),
url('../fonts/SutonnyMJ-webfont.ttf') format('truetype');
}

使用@font-face,你加载了一个自定义字体,但你还没有使用它

您仍然需要将它应用到您的网站

body {
font-family: 'SutonnyMJ', sans-serif;
}

关于html - 如何在html css的网站中安装字体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25703895/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com