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