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