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