其他分享
首页 > 其他分享> > 字体族

字体族

作者:互联网

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        @font-face{
            font-family:'myfont';
            src :url('./font/仓耳非白W05.ttf');
        }
        p{
            color: #00a4ff;
            font-size: 40px;
            font-family: myfont;
        }
    </style>
</head>
<body>
    <p>
        今天天气真不错 hello how are you hhh
    </p>
</body>
</html>

 

标签:40px,src,family,myfont,今天天气,字体,font
来源: https://www.cnblogs.com/evelei/p/16342724.html