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