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