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