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