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