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