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