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