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