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