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