@ font-face 引入本地字体文件
@font-face { font-family: DeliciousRoman; src: url('…/Delicious-Roman.otf'); font-stretch: condensed; //拉伸 font-style: oblique; //斜体 font-weight: bold; //粗体 }
url里写字体文件的路径,在线或者本地的都行。
如果引入了重置样式,要在重置里把font-family的值改成你定义的名字。
@font-face { font-family: DeliciousRoman; src: url('…/Delicious-Roman.otf'); font-stretch: condensed; //拉伸 font-style: oblique; //斜体 font-weight: bold; //粗体 }
url里写字体文件的路径,在线或者本地的都行。
如果引入了重置样式,要在重置里把font-family的值改成你定义的名字。