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