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