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