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