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