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