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