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