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