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