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