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