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