推荐的大量免费的字体网站
html 代码展示
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.testcss {
/*使用你自己的字体*/
font-family: testName;
font-style: oblique;
font-size: 29px;
font-weight: 900;
color: rgb(32, 97, 228);
}
/*使用前必须先定义*/
@font-face {
/* 字体名称随意起 */
font-family: testName;
/*你下载字体所在的位置*/
src: url('您下载的字体url地址');
}
</style>
</head>
<body>
<div class="testcss">
测试test
</div>
</body>
</html>
最终效果
