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