有人可以告诉我在css文件中放置什么以安装名为“ Burbank.otf”的字体,在html中放置什么以使该字体的文本吗?

我在HTML中有这个:

<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
   <body>
      <h1>Hey, June</h1>
   </body>
</head>
</html>
<html>

<head>
  <title>Test</title>
</head>


而在CSS中:

@font-face { font-family: Junebug; src: url('Burbank.otf'); }
.junebug { font-family: Junebug; font-size: 4.2em; }

最佳答案

您正在css文件中选择类.junebug,但是没有类似此类的html标记。

您的CSS:

@font-face { font-family: Junebug; src: url('Burbank.otf'); }
.junebug { font-family: Junebug; font-size: 4.2em; }


给类junebug一个html标签,例如:

<h1 class="junebug">Hey, June</h1>

08-03 15:15