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