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