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