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