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