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