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