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