如何获得自定义字体的粗体版本?

时间:2013-10-22 08:31:27

标签: html css

我使用了CSS命令

@font-face { font-family: myFont; src: url('MyFont.otf'); } 

在HTML网站上安装我自己的字体。

现在,当我使用<strong>标记时,我没有看到它的粗体版本。我该怎么做才能做到这一点?

感谢。

3 个答案:

答案 0 :(得分:3)

您必须在MyFontBold.otf上创建链接。斜体,粗体,中等,半粗,薄它是不同的字体文件。实施例

@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: local('PT Sans'), local('PTSans-Regular'), url(http://themes.googleusercontent.com/static/fonts/ptsans/v5/LKf8nhXsWg5ybwEGXk8UBQ.woff) format('woff');
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  src: local('PT Sans Bold'), local('PTSans-Bold'), url(http://themes.googleusercontent.com/static/fonts/ptsans/v5/0XxGQsSc1g4rdRdjJKZrNBsxEYwM7FgeyaSgU71cLG0.woff) format('woff');
}
@font-face {
  font-family: 'PT Sans';
  font-style: italic;
  font-weight: 400;
  src: local('PT Sans Italic'), local('PTSans-Italic'), url(http://themes.googleusercontent.com/static/fonts/ptsans/v5/PIPMHY90P7jtyjpXuZ2cLD8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
}
@font-face {
  font-family: 'PT Sans';
  font-style: italic;
  font-weight: 700;
  src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url(http://themes.googleusercontent.com/static/fonts/ptsans/v5/lILlYDvubYemzYzN7GbLkHhCUOGz7vYGh680lGh-uXM.woff) format('woff');
}

在此代码之后,您可以使用字体的粗体,斜体和外部属性

答案 1 :(得分:0)

你可以使用font-weight ..

@font-face {
font-family: "xyz";
src: url("xyz.ttf");
font-weight: bold;
font-style: italic, oblique;
}

答案 2 :(得分:0)

使用<b> bold </b>代码