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