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