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