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