web嵌入特殊字体

目录结构

web嵌入特殊字体

 

 代码

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        @font-face {
            font-family: "AlibabaPuHuiTiR";
            src: url("./font/Alibaba-PuHuiTi-Regular.otf") format("truetype");
        }

        @font-face {
            font-family: "PingFangSC-Regular";
            src: url("./PingFang Regular.otf") format("truetype");
        }

        @font-face {
            font-family: "PingFang SC";
            src: url("./font/PingFang Medium.otf") format("truetype");
        }
    </style>
</head>

<body>
    <p style="font-family: 'AlibabaPuHuiTiR'">阿里巴巴普惠字体Regular测试</p>
    <p style="font-family: 'PingFangSC-Regular'">平方字体Regular测试</p>
    <p style="font-family: 'PingFang SC'">平方字体测试</p>
</body>

</html>

 

上一篇:多线程


下一篇:杭州市民卡医保改造,使用动态库调取医保电子凭证方法