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