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