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