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