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