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