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