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