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