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