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