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