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