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