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