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