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