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