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