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