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