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