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