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