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