字体族

2022/6/4 23:20:26

本文主要是介绍字体族,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

<!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>

 



这篇关于字体族的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程