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