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