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