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