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