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