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