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