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