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