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