Use on the webTotal Use [ 6567 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/6d875bda006961fdffa597a7d0ca40ba?family=FZHei-B01T" 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/6d875bda006961fdffa597a7d0ca40ba?family=FZHei-B01T);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "FZHei-B01T";
src: url("https://db.onlinewebfonts.com/t/6d875bda006961fdffa597a7d0ca40ba.eot");
src: url("https://db.onlinewebfonts.com/t/6d875bda006961fdffa597a7d0ca40ba.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/6d875bda006961fdffa597a7d0ca40ba.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/6d875bda006961fdffa597a7d0ca40ba.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/6d875bda006961fdffa597a7d0ca40ba.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/6d875bda006961fdffa597a7d0ca40ba.svg#FZHei-B01T")format("svg");
}
2CSS rules to specify fonts
font-family: "FZHei-B01T";