Use on the webTotal Use [ 6579 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/fad1a8a97cfd3bf5da81a84f6b51e1ce?family=FZYiHei-M20T" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/fad1a8a97cfd3bf5da81a84f6b51e1ce?family=FZYiHei-M20T);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "FZYiHei-M20T";
src: url("https://db.onlinewebfonts.com/t/fad1a8a97cfd3bf5da81a84f6b51e1ce.eot");
src: url("https://db.onlinewebfonts.com/t/fad1a8a97cfd3bf5da81a84f6b51e1ce.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/fad1a8a97cfd3bf5da81a84f6b51e1ce.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/fad1a8a97cfd3bf5da81a84f6b51e1ce.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/fad1a8a97cfd3bf5da81a84f6b51e1ce.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/fad1a8a97cfd3bf5da81a84f6b51e1ce.svg#FZYiHei-M20T")format("svg");
}
2CSS rules to specify fonts
font-family: "FZYiHei-M20T";