font字体
2024-09-23 本文已影响0人
xueyueshuai
声明
<style>
@font-face {
font-family: 'MyFont';
src: url('./font/优设标题黑.ttf');
font-weight: normal;
font-style: normal;
}
</style>
使用
<style>
.abc{
font-family: MyFont, serif;
}
</style>