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