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