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