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