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