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