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