html中引入特殊字体
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>特殊字体</title>
<style>
@font-face {
font-family: 华文彩云;
src: url(C:/font/华文彩云.ttf);
}
</style>
</head>
<body>
<div style="font-family: 华文彩云;">
只有如此飘逸的字体才配得上如此帅气的我
</div>
<div style="font-family: 华文彩云;">
只有如此飘逸的字体才配得上如此帅气的我
</div>
<div style="font-family: 华文彩云;">
只有如此飘逸的字体才配得上如此帅气的我
</div>
</body>
</html>