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