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