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